New to Telerik UI for WinFormsStart a free 30-day trial

IScrollViewer

Interface

Content within a user interface is often larger than the visible area that the user can see. Large Telerik elements can be put in scroll viewer in order to scroll their content in small visible area.

Every element that support scrolling must implement this interface. Currently only class RadScrollViewer implements this interface and all Telerik elements that can be scrolled inherit that class.

Definition

Namespace:Telerik.WinControls.Layouts

Assembly:Telerik.WinControls.dll

Syntax:

C#
public interface IScrollViewer

Derived Classes: AIPromptContainerRadScrollViewer

Properties

Gets whether the scroll viewer uses a virtualized viewport

C#
bool Virtualized { get; }

Methods

Scrolls down within viewport by one logical unit.

C#
void LineDown()

Scrolls left within viewport by one logical unit.

C#
void LineLeft()

Scrolls right within viewport by one logical unit.

C#
void LineRight()

Scrolls up within viewport by one logical unit.

C#
void LineUp()

Scrolls down within viewport by one page.

C#
void PageDown()

Scrolls left within viewport by one page.

C#
void PageLeft()

Scrolls right within viewport by one page.

C#
void PageRight()

Scrolls up within viewport by one page.

C#
void PageUp()
C#
void ScrollElementIntoView(RadElement element)
Parameters:elementRadElement

Scrolls vertically to the end of the content.

C#
void ScrollToBottom()

Scrolls both horizontally and vertically to the end of the content.

C#
void ScrollToEnd()

Scrolls both horizontally and vertically to the beginning of the content.

C#
void ScrollToHome()

Scrolls horizontally to the beginning of the content.

C#
void ScrollToLeftEnd()

Scrolls horizontally to the end of the content.

C#
void ScrollToRightEnd()

Scrolls vertically to the beginning of the content.

C#
void ScrollToTop()