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.
Inheritance
Namespace: Telerik.Windows.Controls
Assembly: Telerik.Windows.Controls.dll
Syntax
public class RadDragCompletedEventArgs : RoutedEventArgs
Constructors
RadDragCompletedEventArgs()
Initializes a new instance of the RadDragCompletedEventArgs class.
Declaration
public RadDragCompletedEventArgs()
RadDragCompletedEventArgs(Double, Double, Double, Double, Double, Boolean)
Initializes a new instance of the RadDragCompletedEventArgs class.
Declaration
public RadDragCompletedEventArgs(double horizontalChange, double verticalChange, double value, double selectionStart, double selectionEnd, bool canceled)
Parameters
System.Double
horizontalChange
The horizontal change. |
System.Double
verticalChange
The vertical change. |
System.Double
value
The value. |
System.Double
selectionStart
The selection start. |
System.Double
selectionEnd
The selection end. |
System.Boolean
canceled
If set to |
Properties
Canceled
Gets a value that indicates whether the drag operation was canceled.
Declaration
public bool Canceled { get; }
Property Value
System.Boolean
|
HorizontalChange
Gets the horizontal change in the thumb position since the last RadDragDelta event.
Declaration
public double HorizontalChange { get; }
Property Value
System.Double
The horizontal change in the thumb position since the last RadDragDelta event. |
SelectionEnd
Gets or sets the selection end.
Declaration
public double SelectionEnd { get; }
Property Value
System.Double
The selection end. |
SelectionStart
Gets or sets the selection start.
Declaration
public double SelectionStart { get; }
Property Value
System.Double
The selection start. |
Value
Gets or sets the value.
Declaration
public double Value { get; }
Property Value
System.Double
The value. |
VerticalChange
Gets the vertical change in the thumb position since the last RadDragDelta event.
Declaration
public double VerticalChange { get; }
Property Value
System.Double
The vertical change in the thumb position since the last RadDragDelta event. |