'Declaration Public Event BeforeRightClick As BeforeRightClickEventHandler
'Usage Dim instance As GcSpreadSheet Dim handler As BeforeRightClickEventHandler AddHandler instance.BeforeRightClick, handler
public event BeforeRightClickEventHandler BeforeRightClick
Event Data
The event handler receives an argument of type BeforeRightClickEventArgs containing data related to this event. The following BeforeRightClickEventArgs properties provide information specific to this event.
Property | Description |
---|---|
Cancel | Gets or sets a boolean value indicates whether the default right-click action is performed when the procedure is finished. |
ContextMenu | Gets or sets the ContextMenu associated with this event. |
Handled | (Inherited from System.Windows.RoutedEventArgs) |
OriginalSource | (Inherited from System.Windows.RoutedEventArgs) |
RoutedEvent | (Inherited from System.Windows.RoutedEventArgs) |
Source | (Inherited from System.Windows.RoutedEventArgs) |
See Also