IDataGridViewEditingCell.GetEditingCellFormattedValue Method

Definition

Retrieves the formatted value of the cell.

public:
 System::Object ^ GetEditingCellFormattedValue(System::Windows::Forms::DataGridViewDataErrorContexts context);
public object GetEditingCellFormattedValue (System.Windows.Forms.DataGridViewDataErrorContexts context);
public object? GetEditingCellFormattedValue (System.Windows.Forms.DataGridViewDataErrorContexts context);
abstract member GetEditingCellFormattedValue : System.Windows.Forms.DataGridViewDataErrorContexts -> obj
Public Function GetEditingCellFormattedValue (context As DataGridViewDataErrorContexts) As Object

Parameters

context
DataGridViewDataErrorContexts

A bitwise combination of DataGridViewDataErrorContexts values that specifies the context in which the data is needed.

Returns

An Object that represents the formatted version of the cell contents.

Remarks

The formatted value represents the value as it is displayed in the cell's user interface. The formatted value may be different in absolute value and even data type than the actual value contained in the cell.

To set the formatted value of the cell, use the EditingCellFormattedValue property.

Applies to

See also