HotXLS Docs

RowHeight property

Returns or sets the height of all the rows in the range specified, measured in pointers.

Syntax

property RowHeight: OleVariant;

Example

This example doubles the height of first row on sheet one.

With Workbook.Sheets[1].Range['A1', 'A1'] do
begin
  RowHeight := RowHeight * 2;
end;