1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54
|
% Generated by roxygen2: do not edit by hand
% Please edit documentation in R/borders.R
\name{hline_bottom}
\alias{hline_bottom}
\title{set bottom horizontal border}
\usage{
hline_bottom(x, j = NULL, border = NULL, part = "body")
}
\arguments{
\item{x}{a flextable object}
\item{j}{columns selection}
\item{border}{border properties defined by a call to \code{\link[=fp_border]{fp_border()}}}
\item{part}{partname of the table (one of 'all', 'body', 'header', 'footer')}
}
\description{
The function is applying an horizontal border to the
bottom of one or all parts of a flextable. The line is the
bottom border of selected parts.
}
\section{Illustrations}{
\if{html}{\figure{fig_hline_bottom_1.png}{options: width="400"}}
}
\examples{
library(officer)
big_border = fp_border(color="orange", width = 3)
ft <- flextable(head(iris))
ft <- border_remove(x = ft)
# add/replace horizontal border on bottom
ft <- hline_bottom(ft, part="body", border = big_border )
ft
}
\seealso{
Other borders management:
\code{\link{border_inner_h}()},
\code{\link{border_inner_v}()},
\code{\link{border_inner}()},
\code{\link{border_outer}()},
\code{\link{border_remove}()},
\code{\link{hline_top}()},
\code{\link{hline}()},
\code{\link{surround}()},
\code{\link{vline_left}()},
\code{\link{vline_right}()},
\code{\link{vline}()}
}
\concept{borders management}
|