AD
Administrator
Syncfusion Team
January 14, 2005 03:24 PM UTC
To get the width of the first 2 column and the header column, try code like:
int width = grid.Model.ColWidths.GetTotal(0,2);
To get the width of all columns, try code like:
int width = grid.Model.ColWidths.GetTotal(0,grid.Model.ColCount);