Vcl.DBCtrls.TDBRichEdit.Change

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

procedure Change; override;

C++

DYNAMIC void __fastcall Change();

Properties

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

Description

Keeps track of the fact that the text has been modified, before letting the inherited method call the OnChange event handler if it is assigned.

Applications cannot call this protected method directly. It is triggered automatically by Windows' events. Change responds to these events 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.

Change also calls the inherited method, which calls the OnChange event handler if it is assigned.

See Also