DataGridViewRowHeaderCell.GetInheritedContextMenuStrip(Int32) Method
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Retrieves the inherited shortcut menu for the specified row.
public:
override System::Windows::Forms::ContextMenuStrip ^ GetInheritedContextMenuStrip(int rowIndex);
public override System.Windows.Forms.ContextMenuStrip GetInheritedContextMenuStrip (int rowIndex);
public override System.Windows.Forms.ContextMenuStrip? GetInheritedContextMenuStrip (int rowIndex);
override this.GetInheritedContextMenuStrip : int -> System.Windows.Forms.ContextMenuStrip
Public Overrides Function GetInheritedContextMenuStrip (rowIndex As Integer) As ContextMenuStrip
Parameters
- rowIndex
- Int32
The index of the row to get the ContextMenuStrip of. The index must be -1 to indicate the row of column headers.
Returns
The ContextMenuStrip of the row if one exists; otherwise, the ContextMenuStrip inherited from DataGridView.
Exceptions
The value of the DataGridView property of the cell is not null
and the specified rowIndex
is less than 0 or greater than the number of rows in the control minus 1.