'Declaration Public Event BeforeShowContextMenu As EventHandler(Of BeforeShowContextMenuEventArgs)
'Usage Dim instance As FpSpread Dim handler As EventHandler(Of BeforeShowContextMenuEventArgs) AddHandler instance.BeforeShowContextMenu, handler
public event EventHandler<BeforeShowContextMenuEventArgs> BeforeShowContextMenu
Event Data
The event handler receives an argument of type BeforeShowContextMenuEventArgs containing data related to this event. The following BeforeShowContextMenuEventArgs properties provide information specific to this event.
Property | Description |
---|---|
AssociatedObject | Represents the object that associate with context menu. |
ContextMenu | Represents the enhanced filter context menu object. |
See Also