TcxCustomTextEdit.EditingText Property
Specifies the text displayed in the edit box of the edit control.
Declaration
property EditingText: TCaption read; write;
Property Value
Type |
---|
TCaption |
Remarks
You can use the EditingText property to modify the contents of the editor. EditingText matches the text displayed in the editor’s edit box.
Assigning a text string to the EditingText property:
sets a corresponding dataset to edit mode (for data-aware editors);
modifies the text displayed in the edit box;
sets the EditModified flag to True and this indicates that the edit value should be posted when the editor loses focus or when a user presses the Enter key.
Changing the editor’s Text property does not sets a corresponding dataset to edit mode and does not activate the EditModified flag.
See Also