DataGridViewTextBoxEditingControl.EditingControlFormattedValue Property

Definition

Gets or sets the formatted representation of the current value of the text box control.

public:
 virtual property System::Object ^ EditingControlFormattedValue { System::Object ^ get(); void set(System::Object ^ value); };
public virtual object EditingControlFormattedValue { get; set; }
member this.EditingControlFormattedValue : obj with get, set
Public Overridable Property EditingControlFormattedValue As Object

Property Value

An object representing the current value of this control.

Implements

Remarks

The Text property contains the actual data contained by the control. The data is the string shown in the text box of the control. In contrast, the EditingControlFormattedValue property is the formatted representation of this string. Since a text box uses plain text strings, these two properties are essentially the same.

Applies to

See also