Skip to main content

DevExpress v24.2 Update — Your Feedback Matters

Our What's New in v24.2 webpage includes product-specific surveys. Your response to our survey questions will help us measure product satisfaction for features released in this major update and help us refine our plans for our next major release.

Take the survey Not interested

TcxCustomEdit.EditValue Property

Determines the edit value of an editor.

#Declaration

Delphi
property EditValue: TcxEditValue read; write;

#Property Value

Type
TcxEditValue

#Remarks

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:

See Also