Products | Support | Email a link to this topic. | Send comments on this topic. | Back to Introduction - All Topics | Help Version 19.0.4.3
|
public event EventHandler<InteractiveEventArgs> Hold
'Declaration
Public Event Hold As EventHandler(Of InteractiveEventArgs)
The event handler receives an argument of type InteractiveEventArgs containing data related to this event. The following InteractiveEventArgs properties provide information specific to this event.
Property | Description |
---|---|
IsHandled | Indicates whether this event is handled. |
MouseButton | Mouse button that triggered this event. |
NativeEvent | Native event associated with this event. |
Origin | Original mouse or touch position. |
Position | Current mouse or touch position. |
The Hold event will fire only when EnableHold is set to true and when the following occurs:
The Hold event is used usually on touch devices to show a context menu.
InteractiveEventArgs