Vcl.StdCtrls.TCustomEdit.Modified

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

property Modified: Boolean read GetModified write SetModified;

C++

__property bool Modified = {read=GetModified, write=SetModified, nodefault};

Properties

Type Visibility Source Unit Parent
property public
Vcl.StdCtrls.pas
Vcl.StdCtrls.hpp
Vcl.StdCtrls TCustomEdit

Description

Indicates whether the user edited the text of the edit control.

Use Modified to determine whether the user changed the Text property of the edit control. Modified is only reset to False when you assign a value to the Text property. In particular, it is not reset when the control receives focus.

See Also