Hi, as I browsed, I found that I can use column choose dialog for hiding column functionality that the user can use. But I need to hide certain columns inside the code, not let the user choose it. I assume since the column choose dialog can do it, I should be able to do it too. But can't find any reference. Could you please provide me any directions?
Also, the band and overriden properties, are they only available at design time and through the initializelayout event? Can't I directly access them like any other property?
Thanks in advance.
Dear Sari211 --
FYI, this is one way to hide a column in an UltraWinGrid programmatically...
this.myUltraWinGrid.DisplayLayout.Bands[0].Columns[0].Hidden = true;
HTH.
Thanks.
-- Mark Kamoski
grdDetails.DisplayLayout.Bands[0].Columns[0].Hidden = true;
this is how to hide any column in your Ultra Grid in Windows Forms.
Regards
Fahad Mirza
Senior .Net Developer