New to Telerik UI for WinForms? Download free 30-day trial

Scrolling Programmatically

You can scroll programmatically using the following functions:

ScrollTo

this.radGridView1.TableElement.ScrollTo(5, 4);

Me.RadGridView1.TableElement.ScrollTo(5, 4)

ScrollToColumn

radGridView1.TableElement.ScrollToColumn(3);

RadGridView1.TableElement.ScrollToColumn(3)

ScrollToRow

radGridView1.TableElement.ScrollToRow(100);

RadGridView1.TableElement.ScrollToRow(100)

Properties

The following properties are useful when you need to control the scrolling functionality:

  • EnableFastScrolling: controls the fast scrolling mode.

  • EnableKineticScrolling: controls the kinetic scrolling function.

  • UseScrollbarsInHierarchy: enable or disable the dedicated vertical scrollbars in hierarchy.

See Also

In this article