Provides data for the RadDragDelta event that occurs one or more times when a user drags a Thumb control with the mouse.
Definition
Namespace:Telerik.Windows.Controls
Assembly:Telerik.Windows.Controls.dll
Syntax:
public class RadDragDeltaEventArgs : RoutedEventArgs
Inheritance: objectRadDragDeltaEventArgs
Constructors
Initializes a new instance of the RadDragDeltaEventArgs class.
public RadDragDeltaEventArgs()
Initializes a new instance of the RadDragDeltaEventArgs class.
public RadDragDeltaEventArgs(double horizontalChange, double verticalChange, double value, double selectionStart, double selectionEnd)
The horizontal change.
verticalChangedoubleThe vertical change.
valuedoubleThe value.
selectionStartdoubleThe selection start.
selectionEnddoubleThe selection end.
Properties
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.