AD
Administrator
Syncfusion Team
February 21, 2007 06:21 PM UTC
Hi Srdjan,
Here is a code snippet that shows you "How can I found total size of all visible columns in GGC?".
int Startcol = this.gridGroupingControl1.TableControl.ViewLayout.VisibleCellsRange.Left;
int EndCol = this.gridGroupingControl1.TableControl.ViewLayout.VisibleCellsRange.Right;
int width = this.gridGroupingControl1.TableModel.ColWidths.GetTotal(Startcol,EndCol);
MessageBox.Show( "Visible Column Width : " + width.ToString() );
Best regards,
Haneef