vcl-cxedit-dot-tcxcustomedit-158ab00a.md
Determines the edit value of an editor.
property EditValue: TcxEditValue read; write;
| Type |
|---|
| TcxEditValue |
Some editors do not immediately store the values being edited by a user in the EditValue property. They will be stored in EditValue after a user performs one of the following:
Presses the Enter key;
Sets focus to another control;
Performs any other action specific to the editor.
In this case, the currently edited value is validated first. However, some editors (e.g. a checkbox control), store values directly in the EditValue property.
To access the editor’s value before it is validated, use the EditingValue property.
You can specify the range of input values for an editor via the following properties:
For an editor that displays numeric values, the editor’s Properties.MinValue and Properties.MaxValue properties;
For a date/time editor, the editor’s Properties.MinDate and Properties.MaxDate properties.
See Also
TcxCustomEdit.DoOnEditValueChanged
TcxCustomEdit.SetValidatableEditValue