setRowHeight-methods
From XLConnect v1.0.1
by Martin Studer
Setting the height of a row in a worksheet
Sets the height of a row in a worksheet.
Usage
# S4 method for workbook,character
setRowHeight(object,sheet,row,height)
# S4 method for workbook,numeric
setRowHeight(object,sheet,row,height)
Arguments
Details
Note that the arguments sheet
, row
and height
are
vectorized. As such the row height of multiple rows (potentially on
different worksheets) can be set with one method call.
See Also
'>workbook
, setColumnWidth
Examples
# NOT RUN {
# mtcars xlsx file from demoFiles subfolder of package XLConnect
mtcarsFile <- system.file("demoFiles/mtcars.xlsx", package = "XLConnect")
# Load workbook
wb <- loadWorkbook(mtcarsFile)
# Sets the row height of the 1st row on sheet 'mtcars'
# to 20 points
setRowHeight(wb, sheet = "mtcars", row = 1, height = 20)
# }
Community examples
Looks like there are no examples yet.