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