Syncfusion.Windows.Form.Grid.GridDataBoundGrid and Col

Hello @ all,
how can I hide a column in the Syncfusion.Windows.Form.Grid.GridDataBoundGrid.
I don't find a Col or Row Property in this Grid.

cu Martin

1 Reply

HA haneefm Syncfusion Team November 7, 2007 09:14 PM UTC

Hi Martin,

Use the GridDataBoundGrid.Model.Cols.Hidden property. So to hide column 2, try


this.gridDataBoundGrid1.Model.Cols.Hidden[2] = true; //C#

Me.GridDataBoundGrid.Model.Cols.Hidden(2) = True ' VB


Best regards,
Haneef

Loader.
Up arrow icon