[]
        
(Showing Draft Content)

GrapeCity.Documents.Excel.IRange.UseStandardWidth

UseStandardWidth Property

UseStandardWidth

Determines if the column width of the IRange object equals the standard width of the sheet.

Declaration
bool UseStandardWidth { get; set; }
Property UseStandardWidth As Boolean
Examples
IRange column = worksheet.Range["A:A"];
column.ColumnWidth = 20;
column.UseStandardWidth = true;
bool useStandardWidth = column.UseStandardWidth;