How can I be informed when the visible rows (cards) in a CardView changes? I have tried with AfterRowRegionScroll, but this is not raised when scrolling the cards.
I then would like to find the visible (and not visible) rows, in order to change a value depending on whether the cell is visible...
Thanks!
Actually, there is an event:
AfterCardsScroll(object sender, AfterCardsScrollEventArgs e)
I can then use
foreach (UltraGridRow row in grid.Rows) {
if (e.Rows.IsCardVisible(row))
{//do stuff}
}
...after some more testing, I can report that e.Rows.IsCardVisible actually only reports true for Cards that were visible, and not for Cards now visible. So it has the expected behaviour of BeforeCardsScroll rather than AfterCardsScroll, and is sadly useless for me.