I need to scroll a Winforms UltraWinListView programatically because it is being written for a touch screen app and the default scrollbar in the listview is too small for large fingers. I think I can do this using the UltraListViewItem.BringIntoView, however, how can I determine how many items are currently in view in the listview so i can bringintoview the next element in the list?
Actually it would seems as though I could call UltraListView.PerformAction with the UltraListViewAction.ScrollVerticalBy..... as appropriate.
Sorry, there is no publicly exposed way to change the scroll position. I'm not sure if this helps you but the control uses the system setting for vertical scrollbar width, so if you are able to change that, the control will honor it.