DataGridViewCellEventArgs
Wisej.Web.DataGridViewCellEventArgs
Last updated
Wisej.Web.DataGridViewCellEventArgs
Last updated
Namespace: Wisej.Web
Assembly: Wisej.Framework (2.2.0.0)
Provides data for DataGridView events related to cell and row operations.
Initializes a new instance of the DataGridViewCellEventArgs class.
Name | Type | Description |
---|---|---|
columnIndex | The index of the column containing the cell that the event occurs for. | |
rowIndex | The index of the row containing the cell that the event occurs for. |
Throws:
ArgumentOutOfRangeException columnIndex is less than -1, or rowIndex is less than -1.
Int32: Returns a value indicating the column index of the cell that the event occurs for.
Point: Returns the location of the mouse or pointer event.
String: Returns the internal role assigned to the element that generated the pointer event: checkbox, button, ...
The value in the Role property is taken from the "role" attribute of the clicked element inside the cell. You can detect clicks on custom HTML content by adding the role attribute to the custom element.
Int32: Returns a value indicating the row index of the cell that the event occurs for.
Int32: Returns the x-coordinate of the mouse or touch event.
Int32: Returns the y-coordinate of the mouse or touch event.
Name | Description |
---|---|
Represents the method that will handle DataGridView events related to cell and row operations. |