AD
Administrator
Syncfusion Team
January 26, 2004 08:12 PM UTC
Try setting the GridStyleInfo.Enabled property to false for the column. In a GridDataBoundGrid, you would do this in either
grid.GridBoundColumns[col].StyleInfo.Enabled = false;
or
grid.Binder.InternalColumns[col].StyleInfo.Enabled = false;
depending upon whether you have explicitly added GridBoundColumns to your grid.