DataGridViewRowDividerDoubleClickEventArgs Constructor
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.
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.
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
.