I have an UltraGrid that I would like to automatically scroll so as to keep the currently active row visible. Is there a setting that will do this or must it be done in code?
grid.ActiveRowScrollRegion.ScrollRowIntoView(grid.ActiveRow);
So to use this method then I assume that a row selection changed event of some sort much be intercepted and this code inserted within?