Interface IScrollInfo
Represents a scrollable region.
Namespace: Telerik.Windows.Controls.GridView
Assembly: Telerik.Windows.Controls.GridView.dll
Syntax
public interface IScrollInfo
Properties
CanHorizontallyScroll
Gets or sets a value indicating whether scrolling on the horizontal axis is possible.
Declaration
bool CanHorizontallyScroll { get; set; }
Property Value
System.Boolean
|
CanVerticallyScroll
Gets or sets a value indicating whether scrolling on the vertical axis is possible.
Declaration
bool CanVerticallyScroll { get; set; }
Property Value
System.Boolean
|
ExtentHeight
Gets the extent height.
Declaration
double ExtentHeight { get; }
Property Value
System.Double
The height of the extent. |
ExtentWidth
Gets the extent width.
Declaration
double ExtentWidth { get; }
Property Value
System.Double
The width of the extent. |
HorizontalOffset
Gets the horizontal offset.
Declaration
double HorizontalOffset { get; }
Property Value
System.Double
|
ScrollOwner
Gets or sets the scroll owner.
Declaration
GridViewScrollViewer ScrollOwner { get; set; }
Property Value
GridViewScrollViewer
The scroll owner. |
VerticalOffset
Gets the vertical offset.
Declaration
double VerticalOffset { get; }
Property Value
System.Double
The vertical offset. |
ViewportHeight
Gets the height of the viewport.
Declaration
double ViewportHeight { get; }
Property Value
System.Double
The height of the viewport. |
ViewportWidth
Gets the width of the viewport.
Declaration
double ViewportWidth { get; }
Property Value
System.Double
The width of the viewport. |
Methods
LineDown()
Scrolls a line down.
Declaration
void LineDown()
LineLeft()
Scrolls left within content by one logical unit.
Declaration
void LineLeft()
LineRight()
Scrolls right within content by one logical unit.
Declaration
void LineRight()
LineUp()
Scrolls a line up.
Declaration
void LineUp()
MakeVisible(UIElement, Rect)
Forces content to scroll until the coordinate space of a System.Windows.UIElement object is visible.
Declaration
Rect MakeVisible(UIElement visual, Rect visibleArea)
Parameters
System.Windows.UIElement
visual
A System.Windows.UIElement that becomes visible. |
System.Windows.Rect
visibleArea
A bounding rectangle that identifies the coordinate space to make visible. |
Returns
System.Windows.Rect
A System.Windows.Rect that is visible. |
MouseWheelDown()
Scrolls down within content after a user clicks the wheel button on a mouse.
Declaration
void MouseWheelDown()
MouseWheelLeft()
Scrolls left within content after a user clicks the wheel button on a mouse.
Declaration
void MouseWheelLeft()
MouseWheelRight()
Scrolls right within content after a user clicks the wheel button on a mouse.
Declaration
void MouseWheelRight()
MouseWheelUp()
Scrolls up within content after a user clicks the wheel button on a mouse.
Declaration
void MouseWheelUp()
PageDown()
Scrolls down within content by one page.
Declaration
void PageDown()
PageLeft()
Scrolls left within content by one page.
Declaration
void PageLeft()
PageRight()
Scrolls right within content by one page.
Declaration
void PageRight()
PageUp()
Scrolls up within content by one page.
Declaration
void PageUp()
SetHorizontalOffset(Double)
Sets the horizontal offset.
Declaration
void SetHorizontalOffset(double offset)
Parameters
System.Double
offset
The offset. |
SetVerticalOffset(Double)
Sets the vertical offset.
Declaration
void SetVerticalOffset(double offset)
Parameters
System.Double
offset
The offset. |