DataGridViewCellMouseEventArgs 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 DataGridViewCellMouseEventArgs class.
public:
DataGridViewCellMouseEventArgs(int columnIndex, int rowIndex, int localX, int localY, System::Windows::Forms::MouseEventArgs ^ e);
public DataGridViewCellMouseEventArgs (int columnIndex, int rowIndex, int localX, int localY, System.Windows.Forms.MouseEventArgs e);
public DataGridViewCellMouseEventArgs (int columnIndex, int rowIndex, int localX, int localY, System.Windows.Forms.MouseEventArgs? e);
new System.Windows.Forms.DataGridViewCellMouseEventArgs : int * int * int * int * System.Windows.Forms.MouseEventArgs -> System.Windows.Forms.DataGridViewCellMouseEventArgs
Public Sub New (columnIndex As Integer, rowIndex As Integer, localX As Integer, localY As Integer, e As MouseEventArgs)
Parameters
- columnIndex
- Int32
The cell's zero-based column index.
- rowIndex
- Int32
The cell's zero-based row index.
- localX
- Int32
The x-coordinate of the mouse, in pixels.
- localY
- Int32
The y-coordinate of the mouse, in pixels.
The originating MouseEventArgs.