Interface IScrollingInfo
Provides the most important info for scrolling during dragging.
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
System.Double
The height of the extent. |
ExtentWidth
Gets the width of the extent.
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
The horizontal offset. |
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
TransformFromDropTargetToViewPort(Point)
Calculate the mouse position relative to the drop element.
Declaration
Point TransformFromDropTargetToViewPort(Point positionInDropTarget)
Parameters
System.Windows.Point
positionInDropTarget
DragDrop related data. |
Returns
System.Windows.Point
Relative DragPoint. |