You can actually control the grid columns themselves after the fact.
UltraGridColumn column1 = grdProjectSearch.DisplayLayout.Bands[0].Columns[“Column_Name”];
column1.Header.Hidden = true.
that might not be 100% but close.
You can actually control the grid columns themselves after the fact.
UltraGridColumn column1 = grdProjectSearch.DisplayLayout.Bands[0].Columns[“Column_Name”];
column1.Header.Hidden = true.
that might not be 100% but close.