[]
Determines if the column width of the IRange object equals the standard width of the sheet.
bool UseStandardWidth { get; set; }
Property UseStandardWidth As Boolean
IRange column = worksheet.Range["A:A"];
column.ColumnWidth = 20;
column.UseStandardWidth = true;
bool useStandardWidth = column.UseStandardWidth;