New to Telerik UI for WPFStart a free 30-day trial

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:

C#
public class RadDragDeltaEventArgs : RoutedEventArgs

Inheritance: objectRadDragDeltaEventArgs

Constructors

Initializes a new instance of the RadDragDeltaEventArgs class.

C#
public RadDragDeltaEventArgs()

Initializes a new instance of the RadDragDeltaEventArgs class.

C#
public RadDragDeltaEventArgs(double horizontalChange, double verticalChange, double value, double selectionStart, double selectionEnd)
Parameters:horizontalChangedouble

The horizontal change.

verticalChangedouble

The vertical change.

valuedouble

The value.

selectionStartdouble

The selection start.

selectionEnddouble

The selection end.

Properties

Gets the horizontal change in the thumb position since the last RadDragDelta event.

C#
public double HorizontalChange { get; }
Property Value:

The horizontal change in the thumb position since the last RadDragDelta event.

Gets or sets the selection end.

C#
public double SelectionEnd { get; }
Property Value:

The selection end.

Gets or sets the selection start.

C#
public double SelectionStart { get; }
Property Value:

The selection start.

Gets or sets the value.

C#
public double Value { get; }
Property Value:

The value.

Gets the vertical change in the thumb position since the last RadDragDelta event.

C#
public double VerticalChange { get; }
Property Value:

The vertical change in the thumb position since the last RadDragDelta event.