Class RadDragDeltaEventArgs
Provides data for the RadDragDelta event that occurs one or more times when a user drags a Thumb control with the mouse.
Inheritance
Namespace: Telerik.Windows.Controls
Assembly: Telerik.Windows.Controls.dll
Syntax
public class RadDragDeltaEventArgs : RoutedEventArgs
Constructors
RadDragDeltaEventArgs()
Initializes a new instance of the RadDragDeltaEventArgs class.
Declaration
public RadDragDeltaEventArgs()
RadDragDeltaEventArgs(Double, Double, Double, Double, Double)
Initializes a new instance of the RadDragDeltaEventArgs class.
Declaration
public RadDragDeltaEventArgs(double horizontalChange, double verticalChange, double value, double selectionStart, double selectionEnd)
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. |
Properties
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. |