ComponentOne Basic Library for WPF and Silverlight
DragDelta Event (C1DragHelper)


C1.Silverlight Namespace > C1DragHelper Class : DragDelta Event
Occurs while a drag gesture is performed.
Syntax
'Declaration
 
Public Event DragDelta As System.EventHandler(Of C1DragDeltaEventArgs)
'Usage
 
Dim instance As C1DragHelper
Dim handler As System.EventHandler(Of C1DragDeltaEventArgs)
 
AddHandler instance.DragDelta, handler
public event System.EventHandler<C1DragDeltaEventArgs> DragDelta
Event Data

The event handler receives an argument of type C1DragDeltaEventArgs containing data related to this event. The following C1DragDeltaEventArgs properties provide information specific to this event.

PropertyDescription
Gets the accumulated translation.  
Gets the delta translation.  
Gets a reference to the C1DragHelper that originated the event. (Inherited from C1.Silverlight.C1DragEventArgs)
Gets or sets a value that marks the routed event as handled. Setting to true prevents most handlers along the event route from handling the same event again. (Inherited from C1.Silverlight.C1InputEventArgs)
Gets a value indicating whether this event is raised because of a direct manipulation or is inertial.  
Gets the arguments of the original event which raised this event. (Inherited from C1.Silverlight.C1InputEventArgs)
Gets a reference to the object that raised the event. (Inherited from C1.Silverlight.C1InputEventArgs)
Gets the type of pointer which performed the action. (Inherited from C1.Silverlight.C1InputEventArgs)
See Also