InterfaceIScrollingInfo
Provides the most important info for scrolling during dragging.
Definition
Namespace:Telerik.Windows.Controls
Assembly:Telerik.Windows.Controls.dll
Syntax:
public interface IScrollingInfo
Properties
ExtentHeight
Gets the height of the extent.
Declaration
double ExtentHeight { get; }
Property Value
The height of the extent.
ExtentWidth
Gets the width of the extent.
Declaration
double ExtentWidth { get; }
Property Value
The width of the extent.
HorizontalOffset
Gets the horizontal offset.
Declaration
double HorizontalOffset { get; }
Property Value
The horizontal offset.
VerticalOffset
Gets the vertical offset.
Declaration
double VerticalOffset { get; }
Property Value
The vertical offset.
ViewportHeight
Gets the height of the viewport.
Declaration
double ViewportHeight { get; }
Property Value
The height of the viewport.
ViewportWidth
Gets the width of the viewport.
Declaration
double ViewportWidth { get; }
Property Value
The width of the viewport.
Methods
TransformFromDropTargetToViewPort(Point)
Calculate the mouse position relative to the drop element.
Declaration
Point TransformFromDropTargetToViewPort(Point positionInDropTarget)
Parameters
positionInDropTarget
Point
DragDrop related data.
Returns
Point
Relative DragPoint.