'Declaration
<SRCategoryAttribute("CatAction")> <SRDescriptionAttribute("DataGridView_CellContextMenuStripChanged")> <System.ComponentModel.EditorBrowsableAttribute(EditorBrowsableState.Advanced)> Public Event CellContextMenuStripChanged As System.Windows.Forms.DataGridViewCellEventHandler
'Usage
Dim instance As NDataGridView Dim handler As System.Windows.Forms.DataGridViewCellEventHandler AddHandler instance.CellContextMenuStripChanged, handler
[SRCategory("CatAction")] [SRDescription("DataGridView_CellContextMenuStripChanged")] [System.ComponentModel.EditorBrowsable(EditorBrowsableState.Advanced)] public event System.Windows.Forms.DataGridViewCellEventHandler CellContextMenuStripChanged
Event Data
The event handler receives an argument of type System.Windows.Forms.DataGridViewCellEventArgs containing data related to this event. The following DataGridViewCellEventArgs properties provide information specific to this event.
Property | Description |
---|---|
ColumnIndex | Gets a value indicating the column index of the cell that the event occurs for. |
RowIndex | Gets a value indicating the row index of the cell that the event occurs for. |
Requirements
Target Platforms: Windows 7, Windows Vista SP1 or later, Windows XP SP3, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2
See Also