Vcl.DBCtrls.TDBEdit.Change

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

procedure Change; override;

C++

DYNAMIC void __fastcall Change(void);

Properties

Type Visibility Source Unit Parent
procedure
function
protected
Vcl.DBCtrls.pas
Vcl.DBCtrls.hpp
Vcl.DBCtrls TDBEdit

Description

Responds when the text is modified.

Applications cannot call this protected method directly: It is triggered automatically by Windows' events.

Change responds to changes in the text by internally keeping track of the fact that the text has been modified. This information can then be used to know whether there are any changes to post to the dataset or to remove if the user requests a reset.

Additionally, Change calls the inherited method, which generates an OnChange event.

See Also