AD
Administrator
Syncfusion Team
July 20, 2004 11:45 AM UTC
you can hide columns in a GridDataBoundGrid by setting
Me.Grid.Model.Cols.Hidden(someColIndex) = True
You should still be able to access the value using an indexer on the grid even though the column is hidden.
Dim val as Object = Me.Grid(someRow, someColIndex).CellValue