[]
        
(Showing Draft Content)

GrapeCity.Documents.Excel.IWorksheet.StandardWidthInPixel

StandardWidthInPixel Property

StandardWidthInPixel

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

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

Declaration
double StandardWidthInPixel { get; set; }
Property StandardWidthInPixel As Double
Examples
worksheet.Range["A:A"].UseStandardWidth = true;
worksheet.StandardWidthInPixel = 80;
double standardWidthInPixel = worksheet.StandardWidthInPixel;
double firstColumnWidthInPixel = worksheet.Range["A:A"].ColumnWidthInPixel;