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
|
% Generated by roxygen2: do not edit by hand
% Please edit documentation in R/nrowcol.R
\name{ncol_keys}
\alias{ncol_keys}
\title{Number of columns}
\usage{
ncol_keys(x)
}
\arguments{
\item{x}{flextable object}
}
\description{
returns the number of columns displayed
}
\examples{
library(flextable)
ft <- qflextable(head(cars))
ncol_keys(ft)
}
\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{nrow_part}()},
\code{\link{set_table_properties}()},
\code{\link{width}()}
}
\concept{flextable dimensions}
|