AD
Administrator
Syncfusion Team
June 23, 2004 08:02 AM UTC
So you are using LayoutColumns then?
If so, you can get the a GridBoundColumnCollection using this code.
GridHierarchyLevel level0 = this.gridDataBoundGrid1.Binder.RootHierarchyLevel;
GridBoundColumnCollection gbcc = level0.GridBoundColumns;
BUT, this collection will have empty place holder columns for the ''.'', ''-'', etc. If you only want the columns that are in your datasource, then you should look at the datasource, maybe this.dataTable1.Columns. If you are only putting some of the columns from your datatable into the grid, then when you do this, you could create your own list for use later when you need it.