Does anybody know how to GET current vertical scrollbar position of UltraGrid? How to scroll all the way to the top/bottom? How to position vertical scrollbar at a particular position?
There are properties and methods on the ActiveRowScrollRegion that might be of use to you. Though you probably don't want to calculate the ScrollPosition yourself, you could use the ScrollRowIntoView or ScrollCellIntoView methods to bring the grid to the top or bottom.
-Matt
Hi Matt
Thanks for your answer. It helped me. I used ActiveScrollRegion.Scroll(RowScrollAction.Top) and ActiveRowScrollRegion.ScrollPosition.
- Mike