Interface
IScrollingInfo

Provides the most important info for scrolling during dragging.

Definition

Namespace:Telerik.Windows.Controls

Assembly:Telerik.Windows.Controls.dll

Syntax:

cs-api-definition
public interface IScrollingInfo

Properties

ExtentHeight

Gets the height of the extent.

Declaration

cs-api-definition
double ExtentHeight { get; }

Property Value

double

The height of the extent.

ExtentWidth

Gets the width of the extent.

Declaration

cs-api-definition
double ExtentWidth { get; }

Property Value

double

The width of the extent.

HorizontalOffset

Gets the horizontal offset.

Declaration

cs-api-definition
double HorizontalOffset { get; }

Property Value

double

The horizontal offset.

VerticalOffset

Gets the vertical offset.

Declaration

cs-api-definition
double VerticalOffset { get; }

Property Value

double

The vertical offset.

ViewportHeight

Gets the height of the viewport.

Declaration

cs-api-definition
double ViewportHeight { get; }

Property Value

double

The height of the viewport.

ViewportWidth

Gets the width of the viewport.

Declaration

cs-api-definition
double ViewportWidth { get; }

Property Value

double

The width of the viewport.

Methods

TransformFromDropTargetToViewPort(Point)

Calculate the mouse position relative to the drop element.

Declaration

cs-api-definition
Point TransformFromDropTargetToViewPort(Point positionInDropTarget)

Parameters

positionInDropTarget

Point

DragDrop related data.

Returns

Point

Relative DragPoint.