Programmatic Scrolling
RadListView expose an API that allows you to manually scroll in code.
The scrolling happens with the ScrollIndexIntoView, ScrollItemIntoView, ScrollToPosition methods of RadListView.
The ScrollItemIntoView method accepts an data item from the ItemsSource collection of the control and attempts to bring it into the view asynchronously.
Example 1: Using ScrollItemIntoView
object item = myItemsSource[30];
listView.ScrollItemIntoView(item);
Example 2: Using ScrollToPosition
this.listView.ScrollToPosition(new Point(0, 100));
Example 3: Using ScrollIndexIntoView
this.listView.ScrollIndexIntoView(30);