DataGridViewCellMouseEventArgs Constructor (Int32, Int32, Int32, Int32, MouseEventArgs^)

 

Initializes a new instance of the DataGridViewCellMouseEventArgs class.

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

public:
DataGridViewCellMouseEventArgs(
	int columnIndex,
	int rowIndex,
	int localX,
	int localY,
	MouseEventArgs^ e
)

Parameters

columnIndex
Type: System::Int32

The cell's zero-based column index.

rowIndex
Type: System::Int32

The cell's zero-based row index.

localX
Type: System::Int32

The x-coordinate of the mouse, in pixels.

localY
Type: System::Int32

The y-coordinate of the mouse, in pixels.

e
Type: System.Windows.Forms::MouseEventArgs^

The originating MouseEventArgs.

Exception Condition
ArgumentOutOfRangeException

columnIndex is less than -1.

-or-

rowIndex is less than -1.

.NET Framework
Available since 2.0
Return to top
Show: