Interface
IScrollViewer

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:

cs-api-definition
public interface IScrollViewer

Properties

Virtualized

Gets whether the scroll viewer uses a virtualized viewport

Declaration

cs-api-definition
bool Virtualized { get; }

Property Value

bool

Methods

LineDown()

Scrolls down within viewport by one logical unit.

Declaration

cs-api-definition
void LineDown()

LineLeft()

Scrolls left within viewport by one logical unit.

Declaration

cs-api-definition
void LineLeft()

LineRight()

Scrolls right within viewport by one logical unit.

Declaration

cs-api-definition
void LineRight()

LineUp()

Scrolls up within viewport by one logical unit.

Declaration

cs-api-definition
void LineUp()

PageDown()

Scrolls down within viewport by one page.

Declaration

cs-api-definition
void PageDown()

PageLeft()

Scrolls left within viewport by one page.

Declaration

cs-api-definition
void PageLeft()

PageRight()

Scrolls right within viewport by one page.

Declaration

cs-api-definition
void PageRight()

PageUp()

Scrolls up within viewport by one page.

Declaration

cs-api-definition
void PageUp()

ScrollElementIntoView(RadElement)

Declaration

cs-api-definition
void ScrollElementIntoView(RadElement element)

Parameters

element

RadElement

ScrollToBottom()

Scrolls vertically to the end of the content.

Declaration

cs-api-definition
void ScrollToBottom()

ScrollToEnd()

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

Declaration

cs-api-definition
void ScrollToEnd()

ScrollToHome()

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

Declaration

cs-api-definition
void ScrollToHome()

ScrollToLeftEnd()

Scrolls horizontally to the beginning of the content.

Declaration

cs-api-definition
void ScrollToLeftEnd()

ScrollToRightEnd()

Scrolls horizontally to the end of the content.

Declaration

cs-api-definition
void ScrollToRightEnd()

ScrollToTop()

Scrolls vertically to the beginning of the content.

Declaration

cs-api-definition
void ScrollToTop()