Is it possible to get a collection of the visible rows ? With visible rows I mean rows that are really displayed on the monitor, not the one that are only visible after scrolling.
I have many rows to update, and I would only update the one that are visible for the user. If the user scrolls, it will update the new displayed rows.
Thanks in advance,
Daniel
Hi Daniel,
Yes, you can use something like this:
this.ultraGrid1.ActiveRowScrollRegion.VisibleRows
Thanks Mike. It works!