SetRowHeight
function SetRowHeight(nRow: number = null, nHeight: number = null): void
Description
Sets the height of the specified row measured in points. A point is 1/72 inch.
Parameters
- nRow
number
null The number of the row to set the height to.
- nHeight
number
null The height of the row measured in points.
Returns
void
Try It
var oWorksheet = Api.GetActiveSheet();
oWorksheet.SetRowHeight(0, 30);