Τεκμηρίωση HotXLS

StandardHeight ιδιότητα

Επιστρέφει or sets the standard (default) height of all the rows in the Worksheet, in pointers. Read/write Double

Σύνταξη

property StandardHeight: Double;

Παράδειγμα

This example sets the height of row one on Sheet1 to the standard height

With Workbook.Sheets[1] do begin
   Cells.Rows[1].RowHeight := StandardHeight;
end;