DataGridViewRowHeaderCell::GetInheritedContextMenuStrip Method (Int32)

 

Retrieves the inherited shortcut menu for the specified row.

Namespace:   System.Windows.Forms
Assembly:  System.Windows.Forms (in System.Windows.Forms.dll)

public:
virtual ContextMenuStrip^ GetInheritedContextMenuStrip(
	int rowIndex
) override

Parameters

rowIndex
Type: System::Int32

The index of the row to get the ContextMenuStrip of. The index must be -1 to indicate the row of column headers.

Return Value

Type: System.Windows.Forms::ContextMenuStrip^

The ContextMenuStrip of the row if one exists; otherwise, the ContextMenuStrip inherited from DataGridView.

Exception Condition
ArgumentOutOfRangeException

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.

.NET Framework
Available since 2.0
Return to top
Show: