I don't know what property should be used for hiding colums in DataGrid, whereas in Data Grid View we have
DataGridView1.Colums(1).Visible = False , But how can I hide (visible=false) Colums in WinGrid?Thankss
Ronald
Hello Ronald,
To hide a column in UltraGrid you should use "Hide" property of the column, which you want to hide. Use the following code line:
ultraGrid1.DisplayLayout.Bands(0).Columns(“Column Key”).Hidden = True
Let me know if you have any further questions.
Hello Hristo,
Thank you for your quick response. Perfect Thanks for your quick help