Your Privacy Matters: We use our own and third-party cookies to improve your experience on our website. By continuing to use the website we understand that you accept their use. Cookie Policy
765
colums visible
posted

I don't know what property should be used for hiding colums in Data
Grid, whereas in Data Grid View we have

DataGridView1.Colums(1).Visible = False ,
But how can I hide (visible=false) Colums in WinGrid?
Thankss

Ronald
 

Parents
No Data
Reply
  • 48586
    Verified Answer
    posted

    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.

Children