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:
public interface IScrollViewer
Derived Classes:
Properties
Gets whether the scroll viewer uses a virtualized viewport
bool Virtualized { get; }
Methods
Scrolls down within viewport by one logical unit.
void LineDown()
Scrolls left within viewport by one logical unit.
void LineLeft()
Scrolls right within viewport by one logical unit.
void LineRight()
Scrolls up within viewport by one logical unit.
void LineUp()
Scrolls down within viewport by one page.
void PageDown()
Scrolls left within viewport by one page.
void PageLeft()
Scrolls right within viewport by one page.
void PageRight()
Scrolls up within viewport by one page.
void PageUp()
Scrolls vertically to the end of the content.
void ScrollToBottom()
Scrolls both horizontally and vertically to the end of the content.
void ScrollToEnd()
Scrolls both horizontally and vertically to the beginning of the content.
void ScrollToHome()
Scrolls horizontally to the beginning of the content.
void ScrollToLeftEnd()
Scrolls horizontally to the end of the content.
void ScrollToRightEnd()
Scrolls vertically to the beginning of the content.
void ScrollToTop()