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