Class
RadDragCompletedEventArgs

Initializes a new instance of the RadDragCompletedEventArgs class. Provides data for the RadDragCompleted event that occurs when a user completes a drag operation with the mouse of Thumb control.

Definition

Namespace:Telerik.Windows.Controls

Assembly:Telerik.Windows.Controls.dll

Syntax:

cs-api-definition
public class RadDragCompletedEventArgs : RoutedEventArgs

Inheritance: objectRadDragCompletedEventArgs

Constructors

RadDragCompletedEventArgs()

Initializes a new instance of the RadDragCompletedEventArgs class.

Declaration

cs-api-definition
public RadDragCompletedEventArgs()

RadDragCompletedEventArgs(double, double, double, double, double, bool)

Initializes a new instance of the RadDragCompletedEventArgs class.

Declaration

cs-api-definition
public RadDragCompletedEventArgs(double horizontalChange, double verticalChange, double value, double selectionStart, double selectionEnd, bool canceled)

Parameters

horizontalChange

double

The horizontal change.

verticalChange

double

The vertical change.

value

double

The value.

selectionStart

double

The selection start.

selectionEnd

double

The selection end.

canceled

bool

If set to true [canceled].

Properties

Canceled

Gets a value that indicates whether the drag operation was canceled.

Declaration

cs-api-definition
public bool Canceled { get; }

Property Value

bool

True if canceled; otherwise, false.

HorizontalChange

Gets the horizontal change in the thumb position since the last RadDragDelta event.

Declaration

cs-api-definition
public double HorizontalChange { get; }

Property Value

double

The horizontal change in the thumb position since the last RadDragDelta event.

SelectionEnd

Gets or sets the selection end.

Declaration

cs-api-definition
public double SelectionEnd { get; }

Property Value

double

The selection end.

SelectionStart

Gets or sets the selection start.

Declaration

cs-api-definition
public double SelectionStart { get; }

Property Value

double

The selection start.

Value

Gets or sets the value.

Declaration

cs-api-definition
public double Value { get; }

Property Value

double

The value.

VerticalChange

Gets the vertical change in the thumb position since the last RadDragDelta event.

Declaration

cs-api-definition
public double VerticalChange { get; }

Property Value

double

The vertical change in the thumb position since the last RadDragDelta event.