How to enable and disable Ultragrid bands that you want or dont want to see on the grid during runtime in code and also in the ultragrid designer
Hi,
It's not clear what you mean by enable and disable. It sounds like you want to hide a band. If that's the case, you simply set the hidden property.
this.ultraGrid1.Bands["My Band"].Hidden = true;