Skip to main content
Version: 3.5

DataGridViewCellCancelEventArgs

Namespace: Wisej.Web

Assembly: Wisej.Framework (3.5.0.0)

Provides data for the CellBeginEdit and RowValidating events.

public class DataGridViewCellCancelEventArgs : CancelEventArgs

Constructors

Instance memberDataGridViewCellCancelEventArgs(columnIndex, rowIndex)

Initializes a new instance of the DataGridViewCellCancelEventArgs class.

NameTypeDescription
columnIndexInt32The index of the column containing the cell that the event occurs for.
rowIndexInt32The index of the row containing the cell that the event occurs for.

Throws:

Properties

Instance memberColumnIndex

Int32: Returns the column index of the cell that the event occurs for.

Instance memberRowIndex

Int32: Returns the row index of the cell that the event occurs for.

Used By

NameDescription
DataGridViewCellCancelEventHandlerRepresents the method that will handle the CellBeginEdit and RowValidating events of a DataGridView.