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/flextable_sizes.R
\name{dim.flextable}
\alias{dim.flextable}
\title{Get widths and heights of flextable}
\usage{
\method{dim}{flextable}(x)
}
\arguments{
\item{x}{flextable object}
}
\description{
returns widths and heights for each table columns and rows.
Values are expressed in inches.
}
\examples{
ftab <- flextable(head(iris))
dim(ftab)
}
\seealso{
Other flextable dimensions:
\code{\link{autofit}()},
\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{nrow_part}()},
\code{\link{set_table_properties}()},
\code{\link{width}()}
}
\concept{flextable dimensions}
|