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
|
% Generated by roxygen2: do not edit by hand
% Please edit documentation in R/nrowcol.R
\name{nrow_part}
\alias{nrow_part}
\title{Number of rows of a part}
\usage{
nrow_part(x, part = "body")
}
\arguments{
\item{x}{flextable object}
\item{part}{partname of the table (one of 'body', 'header', 'footer')}
}
\description{
returns the number of lines in a part of flextable.
}
\examples{
library(flextable)
ft <- qflextable(head(cars))
nrow_part(ft, part = "body")
}
\seealso{
Other flextable dimensions:
\code{\link{autofit}()},
\code{\link{dim.flextable}()},
\code{\link{dim_pretty}()},
\code{\link{fit_to_width}()},
\code{\link{flextable_dim}()},
\code{\link{height}()},
\code{\link{hrule}()},
\code{\link{ncol_keys}()},
\code{\link{set_table_properties}()},
\code{\link{width}()}
}
\concept{flextable dimensions}
|