'Declaration Public Event ContextMenuShowing As ContextMenuShowingEventHandler
public event ContextMenuShowingEventHandler ContextMenuShowing
Event Data
The event handler receives an argument of type ContextMenuShowingEventArgs containing data related to this event. The following ContextMenuShowingEventArgs properties provide information specific to this event.
Property | Description |
---|---|
Handled | Gets or sets whether the context menu appeared successfully. |
Location | Gets the screen point where the context menu should appear. |
X | Gets the x-coordinate of the screen point where the context menu should appear. |
Y | Gets the y-coordinate of the screen point where the context menu should appear. |
See Also