DataGridViewCheckBoxCell::ParseFormattedValue Method (Object^, DataGridViewCellStyle^, TypeConverter^, TypeConverter^)
Converts a value formatted for display to an actual cell value.
Assembly: System.Windows.Forms (in System.Windows.Forms.dll)
public: virtual Object^ ParseFormattedValue( Object^ formattedValue, DataGridViewCellStyle^ cellStyle, TypeConverter^ formattedValueTypeConverter, TypeConverter^ valueTypeConverter ) override
Parameters
- formattedValue
-
Type:
System::Object^
The display value of the cell.
- cellStyle
-
Type:
System.Windows.Forms::DataGridViewCellStyle^
The DataGridViewCellStyle in effect for the cell.
- formattedValueTypeConverter
-
Type:
System.ComponentModel::TypeConverter^
A TypeConverter for the display value type, or null to use the default converter.
- valueTypeConverter
-
Type:
System.ComponentModel::TypeConverter^
A TypeConverter for the cell value type, or null to use the default converter.
| Exception | Condition |
|---|---|
| ArgumentNullException | cellStyle is null. |
| FormatException | The FormattedValueType property value is null. |
| ArgumentException | formattedValue is null. - or - The type of formattedValue does not match the type indicated by the FormattedValueType property. |
When the user edits a cell value and commits the change, the DataGridView control calls this method to convert the displayed value from the FormattedValueType to the ValueType. The control then sets the underlying cell value or data source value to the converted value.
This method converts the display value of the cell to an actual cell value using the values of the TrueValue, FalseValue, and IndeterminateValue properties if they have been set.
Available since 2.0