1% Generated by roxygen2: do not edit by hand
2% Please edit documentation in R/wrappers.R
3\name{removeRowHeights}
4\alias{removeRowHeights}
5\title{Remove custom row heights from a worksheet}
6\usage{
7removeRowHeights(wb, sheet, rows)
8}
9\arguments{
10\item{wb}{A workbook object}
11
12\item{sheet}{A name or index of a worksheet}
13
14\item{rows}{Indices of rows to remove custom height (if any) from.}
15}
16\description{
17Remove row heights from a worksheet
18}
19\examples{
20## Create a new workbook
21wb <- loadWorkbook(file = system.file("extdata", "loadExample.xlsx", package = "openxlsx"))
22
23## remove any custom row heights in rows 1 to 10
24removeRowHeights(wb, 1, rows = 1:10)
25\dontrun{
26saveWorkbook(wb, "removeRowHeightsExample.xlsx", overwrite = TRUE)
27}
28}
29\seealso{
30\code{\link[=setRowHeights]{setRowHeights()}}
31}
32\author{
33Alexander Walker
34}
35