| border_remove {flextable} | R Documentation |
Remove borders
Description
The function is deleting all borders of the flextable object.
Usage
border_remove(x)
Arguments
x |
a flextable object |
See Also
Other borders management:
border_inner(),
border_inner_h(),
border_inner_v(),
border_outer(),
hline(),
hline_bottom(),
hline_top(),
surround(),
vline(),
vline_left(),
vline_right()
Examples
dat <- iris[c(1:5, 51:55, 101:105), ]
ft_1 <- flextable(dat)
ft_1 <- theme_box(ft_1)
ft_1
# remove all borders
ft_2 <- border_remove(x = ft_1)
ft_2
[Package flextable version 0.9.6 Index]