ClassRadDragCompletedEventArgs
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:
public class RadDragCompletedEventArgs : RoutedEventArgs
Inheritance: objectRadDragCompletedEventArgs
Constructors
RadDragCompletedEventArgs()
Initializes a new instance of the RadDragCompletedEventArgs class.
Declaration
public RadDragCompletedEventArgs()
RadDragCompletedEventArgs(double, double, double, double, double, bool)
Initializes a new instance of the RadDragCompletedEventArgs class.
Declaration
public RadDragCompletedEventArgs(double horizontalChange, double verticalChange, double value, double selectionStart, double selectionEnd, bool canceled)
Parameters
horizontalChange
The horizontal change.
verticalChange
The vertical change.
value
The value.
selectionStart
The selection start.
selectionEnd
The selection end.
canceled
If set to true [canceled].
Properties
Canceled
Gets a value that indicates whether the drag operation was canceled.
Declaration
public bool Canceled { get; }
Property Value
True if canceled; otherwise, false.
HorizontalChange
Gets the horizontal change in the thumb position since the last RadDragDelta event.
Declaration
public double HorizontalChange { get; }
Property Value
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
The selection end.
SelectionStart
Gets or sets the selection start.
Declaration
public double SelectionStart { get; }
Property Value
The selection start.
Value
Gets or sets the value.
VerticalChange
Gets the vertical change in the thumb position since the last RadDragDelta event.
Declaration
public double VerticalChange { get; }
Property Value
The vertical change in the thumb position since the last RadDragDelta event.