Name
xlsx.SetRowHeight -- set row height
Synopsis
xlsx.SetRowHeight(id, row, height[, sheet])
Function
This function sets the height of the row specified in row to height. Row indices start at 1. The height is specified in font units of the normal display font and can be a fractional value. Optionally, you can also pass the index of the worksheet to use in the optional sheet parameter (starting from 1 for the first worksheet). If the sheet parameter is omitted, the worksheet set by xlsx.SetDefaultSheet() will be used.

Inputs
id
identifier of the XLSX document to use
row
row index to use (starting from 1)
height
desired row height in font units
sheet
optional: index of the worksheet to use (defaults to the index of the default worksheet)
Example
xlsx.SetRowHeight(1, 1, 12.75)
The code above sets the height of the first row to 12.75.

Show TOC