DataGridViewRowDividerDoubleClickEventArgs Constructor

Definition

Initializes a new instance of the DataGridViewRowDividerDoubleClickEventArgs class.

public:
 DataGridViewRowDividerDoubleClickEventArgs(int rowIndex, System::Windows::Forms::HandledMouseEventArgs ^ e);
public DataGridViewRowDividerDoubleClickEventArgs (int rowIndex, System.Windows.Forms.HandledMouseEventArgs e);
new System.Windows.Forms.DataGridViewRowDividerDoubleClickEventArgs : int * System.Windows.Forms.HandledMouseEventArgs -> System.Windows.Forms.DataGridViewRowDividerDoubleClickEventArgs
Public Sub New (rowIndex As Integer, e As HandledMouseEventArgs)

Parameters

rowIndex
Int32

The index of the row above the row divider that was double-clicked.

e
HandledMouseEventArgs

A new HandledMouseEventArgs containing the inherited event data.

Exceptions

rowIndex is less than -1.

Remarks

This constructor initializes the value of the RowIndex property using the rowIndex value. The values of properties inherited from HandledMouseEventArgs are initialized to the values specified in e.

Applies to