InterfaceIScrollViewer
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
Properties
Virtualized
Gets whether the scroll viewer uses a virtualized viewport
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()
ScrollElementIntoView(RadElement)
Declaration
void ScrollElementIntoView(RadElement element)
Parameters
element
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()