[]
        
(Showing Draft Content)

GrapeCity.Documents.Excel.IWorksheet.StandardWidth

StandardWidth Property

StandardWidth

Gets or sets the standard width, in points, for columns in the worksheet.

This value represents the worksheet's default column width setting.

Declaration
double StandardWidth { get; set; }
Property StandardWidth As Double
Examples
worksheet.Range["A:A"].UseStandardWidth = true;
worksheet.StandardWidth = 72.0;
double standardWidth = worksheet.StandardWidth;
double firstColumnWidth = worksheet.Range["A:A"].ColumnWidth;