Remarks
property This example sets the property of column one on Sheet1 to the standard property
Pastabos
Cells.Columns[ This example sets the property of column one on Sheet1 to the standard property
With
Cells.Columns[
].ColumnWidth := StandardWidth;
With Workbook.Sheets[1] do begin
Cells.Columns[1].ColumnWidth := StandardWidth;
end;