HotXLS-documentatie

RowHeight eigenschap

Retourneert of sets the height of all the rows in the range specified, measured in pointers

Syntaxis

eigenschap RowHeight: OleVariant;

Voorbeeld

This example doubles the height of first row on sheet one

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