New to Telerik UI for WPFStart a free 30-day trial

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:

C#
public class RadDragCompletedEventArgs : RoutedEventArgs

Inheritance: objectRadDragCompletedEventArgs

Constructors

Initializes a new instance of the RadDragCompletedEventArgs class.

C#
public RadDragCompletedEventArgs()

Initializes a new instance of the RadDragCompletedEventArgs class.

C#
public RadDragCompletedEventArgs(double horizontalChange, double verticalChange, double value, double selectionStart, double selectionEnd, bool canceled)
Parameters:horizontalChangedouble

The horizontal change.

verticalChangedouble

The vertical change.

valuedouble

The value.

selectionStartdouble

The selection start.

selectionEnddouble

The selection end.

canceledbool

If set to true [canceled].

Properties

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

C#
public bool Canceled { get; }
Property Value:

True if canceled; otherwise, false.

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

C#
public double HorizontalChange { get; }
Property Value:

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

Gets or sets the selection end.

C#
public double SelectionEnd { get; }
Property Value:

The selection end.

Gets or sets the selection start.

C#
public double SelectionStart { get; }
Property Value:

The selection start.

Gets or sets the value.

C#
public double Value { get; }
Property Value:

The value.

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

C#
public double VerticalChange { get; }
Property Value:

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