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
|
% Generated by roxygen2: do not edit by hand
% Please edit documentation in R/wrappers.R
\name{groupColumns}
\alias{groupColumns}
\title{Group columns}
\usage{
groupColumns(wb, sheet, cols, hidden = FALSE)
}
\arguments{
\item{wb}{A workbook object.}
\item{sheet}{A name or index of a worksheet.}
\item{cols}{Indices of cols to group.}
\item{hidden}{Logical vector. If TRUE the grouped columns are hidden. Defaults to FALSE.}
}
\description{
Group a selection of columns
}
\details{
Group columns together, with the option to hide them.
NOTE: \code{\link{setColWidths}} has a conflicting \code{hidden} parameter; changing one will update the other.
}
\seealso{
\code{\link{ungroupColumns}} to ungroup columns. \code{\link{groupRows}} for grouping rows.
}
\author{
Joshua Sturm
}
|