Vcl.DBCtrls.TDBMemo.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 TDBMemo

Description

Informs the data source of changes to the value of the text, before invoking the OnChange event handler.

Applications do not call the Change method directly: it is triggered automatically by Windows events. Derived classes can override the Change method to make additional responses to changes in the Text property. Any class that overrides the Change method should call the inherited method as well.

See Also