DataGridViewCellParsingEventArgs Constructor

Definition

Initializes a new instance of the DataGridViewCellParsingEventArgs class.

public:
 DataGridViewCellParsingEventArgs(int rowIndex, int columnIndex, System::Object ^ value, Type ^ desiredType, System::Windows::Forms::DataGridViewCellStyle ^ inheritedCellStyle);
public DataGridViewCellParsingEventArgs (int rowIndex, int columnIndex, object value, Type desiredType, System.Windows.Forms.DataGridViewCellStyle inheritedCellStyle);
public DataGridViewCellParsingEventArgs (int rowIndex, int columnIndex, object? value, Type? desiredType, System.Windows.Forms.DataGridViewCellStyle? inheritedCellStyle);
new System.Windows.Forms.DataGridViewCellParsingEventArgs : int * int * obj * Type * System.Windows.Forms.DataGridViewCellStyle -> System.Windows.Forms.DataGridViewCellParsingEventArgs
Public Sub New (rowIndex As Integer, columnIndex As Integer, value As Object, desiredType As Type, inheritedCellStyle As DataGridViewCellStyle)

Parameters

rowIndex
Int32

The row index of the cell that was changed.

columnIndex
Int32

The column index of the cell that was changed.

value
Object

The new value.

desiredType
Type

The type of the new value.

inheritedCellStyle
DataGridViewCellStyle

The style applied to the cell that was changed.

Applies to

See also