Create a fp_cell
object that describes cell formatting properties.
fp_cell(
border = fp_border(width = 0),
border.bottom,
border.left,
border.top,
border.right,
vertical.align = "center",
margin = 0,
margin.bottom,
margin.top,
margin.left,
margin.right,
background.color = "transparent",
text.direction = "lrtb",
rowspan = 1,
colspan = 1
)
# S3 method for class 'fp_cell'
format(x, type = "wml", ...)
# S3 method for class 'fp_cell'
print(x, ...)
# S3 method for class 'fp_cell'
update(
object,
border,
border.bottom,
border.left,
border.top,
border.right,
vertical.align,
margin = 0,
margin.bottom,
margin.top,
margin.left,
margin.right,
background.color,
text.direction,
rowspan = 1,
colspan = 1,
...
)
shortcut for all borders.
fp_border()
for borders.
cell content vertical alignment - a single character value, expected value is one of "center" or "top" or "bottom"
shortcut for all margins.
cell margins - 0 or positive integer value.
cell background color - a single character value specifying a valid color (e.g. "#000000" or "black").
cell text rotation - a single character value, expected value is one of "lrtb", "tbrl", "btlr".
specify how many rows the cell is spanned over
specify how many columns the cell is spanned over
fp_cell
object
output type - one of 'wml', 'pml', 'html', 'rtf'.
further arguments - not used
obj <- fp_cell(margin = 1)
update(obj, margin.bottom = 5)
#> background-color:transparent;vertical-align:middle;border-bottom: 0.00pt solid transparent;border-top: 0.00pt solid transparent;border-left: 0.00pt solid transparent;border-right: 0.00pt solid transparent;margin-bottom:5pt;margin-top:1pt;margin-left:1pt;margin-right:1pt;