[]
        
(Showing Draft Content)

GrapeCity.Documents.Excel.IRange.UseStandardHeight

UseStandardHeight Property

UseStandardHeight

Determines if the row height of the IRange object equals the standard height of the sheet.

Declaration
bool UseStandardHeight { get; set; }
Property UseStandardHeight As Boolean
Examples
IRange row = worksheet.Range["1:1"];
row.RowHeight = 30;
row.UseStandardHeight = true;
bool useStandardHeight = row.UseStandardHeight;