Skip to main content
Version: 3.5

DataGridViewCellParsingEventArgs

Namespace: Wisej.Web

Assembly: Wisej.Framework (3.5.0.0)

Provides data for the CellParsing event of a DataGridView control.

public class DataGridViewCellParsingEventArgs : ConvertEventArgs

Constructors

Instance memberDataGridViewCellParsingEventArgs(rowIndex, columnIndex, value, desiredType, inheritedCellStyle)

Initializes a new instance of the DataGridViewCellParsingEventArgs class.

NameTypeDescription
rowIndexInt32The row index of the cell that was changed.
columnIndexInt32The column index of the cell that was changed.
valueObjectThe new value.
desiredTypeTypeThe type of the new value.
inheritedCellStyleDataGridViewCellStyleThe style applied to the cell that was changed.

Properties

Instance memberColumnIndex

Int32: Returns the column index of the cell data that requires parsing.

Instance memberInheritedCellStyle

DataGridViewCellStyle: Returns or sets the style applied to the edited cell.

Instance memberParsingApplied

Boolean: Returns or sets whether a cell's value has been successfully parsed.

Instance memberRowIndex

Int32: Returns the row index of the cell that requires parsing.

Used By

NameDescription
DataGridViewCellParsingEventHandlerRepresents the method that will handle a CellParsing event of a DataGridView.