Vcl.StdCtrls.TCustomEdit.Change

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

procedure Change; dynamic;

C++

DYNAMIC void __fastcall Change();

Properties

Type Visibility Source Unit Parent
procedure
function
protected
Vcl.StdCtrls.pas
Vcl.StdCtrls.hpp
Vcl.StdCtrls TCustomEdit

Description

Generates an OnChange event.

Applications do not call the Change method directly. It is triggered automatically by Windows events. Change is exposed as a protected method so that derived classes can make additional responses when the text changes beyond invoking the OnChange event handler. If Derived classes that override the Change method do not call the inherited method, the OnChange event handler will not be called.

See Also