FMX.Edit.Style.TStyledEdit.Change

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

procedure Change; virtual;

C++

virtual void __fastcall Change();

Properties

Type Visibility Source Unit Parent
procedure
function
protected
FMX.Edit.Style.pas
FMX.Edit.Style.hpp
FMX.Edit.Style TStyledEdit

Description

Generates an OnChange event.

Applications do not call the Change method directly. It is triggered automatically. 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 is not called.

See Also