'Declaration
Public Event ColumnHeaderDragDelta As EventHandler(Of C1DragDeltaEventArgs)
public event EventHandler<C1DragDeltaEventArgs> ColumnHeaderDragDelta
Event Data
The event handler receives an argument of type C1.WPF.C1DragDeltaEventArgs containing data related to this event. The following C1DragDeltaEventArgs properties provide information specific to this event.
Property | Description |
---|---|
CumulativeTranslation | Gets the accumulated translation. |
DeltaTranslation | Gets the delta translation. |
DragHelper | (Inherited from C1.WPF.C1DragEventArgs) |
Handled | (Inherited from C1.WPF.C1InputEventArgs) |
IsInertial | Gets a value indicating whether this event is raised because of a direct manipulation or is inertial. |
OriginalEventArgs | (Inherited from C1.WPF.C1InputEventArgs) |
OriginalSource | (Inherited from C1.WPF.C1InputEventArgs) |
PointerDeviceType | (Inherited from C1.WPF.C1InputEventArgs) |
See Also