| border {flextable} | R Documentation |
change borders of selected rows and columns of a flextable.
border(x, i = NULL, j = NULL, border = NULL, border.top = NULL, border.bottom = NULL, border.left = NULL, border.right = NULL, part = "body")
x |
a flextable object |
i |
rows selection |
j |
columns selection |
border |
border (shortcut for top, bottom, left and right) |
border.top |
border top |
border.bottom |
border bottom |
border.left |
border left |
border.right |
border right |
part |
partname of the table (one of 'all', 'body', 'header', 'footer') |
This function should not be used directly by users and functions hline,
vline, hline_top, vline_left should
be prefered.
library(officer) ft <- flextable(mtcars) ft <- border(ft, border.top = fp_border(color = "orange") )