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
925
Iterate through all of the rows in a grid when there are outlook group by rows
posted

How can I iterate through all of the rows in a grid when there are outlook group by rows?  When I try to just go through the rows collection, it is return a UltraGridGroupByRow object?

Thanks

Scott

Parents
  • 17259
    Offline posted

    You can iterate through all rows in the grid in all bands with this method:

    grid.Rows.GetRowEnumerator(GridRowType.DataRow, null, null);

    The last two parameters are used to get rows of some of the bands.

Reply Children