fp_border
From officer v0.1.5
by David Gohel
border properties object
create a border properties object.
Usage
fp_border(color = "black", style = "solid", width = 1)# S3 method for fp_border
update(object, color, style, width, ...)
# S3 method for fp_border
format(x, type = "pml", ...)
Arguments
- color
border color - single character value (e.g. "#000000" or "black")
- style
border style - single character value : "none" or "solid" or "dotted" or "dashed"
- width
border width - an integer value : 0>= value
- ...
further arguments - not used
- x, object
object
fp_border
- type
output type - one of 'pml'.
Examples
# NOT RUN {
fp_border()
fp_border(color="orange", style="solid", width=1)
fp_border(color="gray", style="dotted", width=1)
# modify object ------
border <- fp_border()
update(border, style="dotted", width=3)
# }
Community examples
Looks like there are no examples yet.