'Declaration
Public Event ColumnContextMenuOpening As EventHandler(Of ColumnContextMenuOpeningEventArgs)
public event EventHandler<ColumnContextMenuOpeningEventArgs> ColumnContextMenuOpening
Event Data
The event handler receives an argument of type ColumnContextMenuOpeningEventArgs containing data related to this event. The following ColumnContextMenuOpeningEventArgs properties provide information specific to this event.
Property | Description |
---|---|
Cancel | (Inherited from System.ComponentModel.CancelEventArgs) |
Col | Gets the index of the column that caused the event. |
ContextMenuStrip | Gets the column context menu strip that caused the event. |
See Also