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
|
% Generated by roxygen2: do not edit by hand
% Please edit documentation in R/wrappers.R
\name{removeCellMerge}
\alias{removeCellMerge}
\title{Create a new Workbook object}
\usage{
removeCellMerge(wb, sheet, cols, rows)
}
\arguments{
\item{wb}{A workbook object}
\item{sheet}{A name or index of a worksheet}
\item{cols}{vector of column indices}
\item{rows}{vector of row indices}
}
\description{
Unmerges any merged cells that intersect
with the region specified by, min(cols):max(cols) X min(rows):max(rows)
}
\seealso{
\code{\link[=mergeCells]{mergeCells()}}
}
\author{
Alexander Walker
}
|