flextable (version 0.5.11)

border_remove: remove borders

Description

The function is deleting all borders of the flextable object.

Usage

border_remove(x)

Arguments

x

a flextable object

Illustrations

See Also

Other borders management: border_inner_h(), border_inner_v(), border_inner(), border_outer(), border(), hline_bottom(), hline_top(), hline(), vline_left(), vline_right(), vline()

Examples

Run this code
# NOT RUN {
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
# }

Run the code above in your browser using DataLab