Hi
I want to expand a band programmatically. I have a grid with 3 bands. As default they are collapsed. Depending on some condition i want to show band 2, how do I do that?
Kind regards
Claus Løber
Hello,
You can either use the ExpandAll method or Expanded property of a row to expand its child contents. ExpandAll will expand the child rows and all of its descendants while Expanded = true will expand only the child rows. The syntax is as follows.
UltraGrid1.Rows[0].Expanded = true;