System.Classes.TBasicAction.OnChange

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

property OnChange: TNotifyEvent read FOnChange write FOnChange;

C++

__property TNotifyEvent OnChange = {read=FOnChange, write=FOnChange};

Properties

Type Visibility Source Unit Parent
event protected
System.Classes.pas
System.Classes.hpp
System.Classes TBasicAction

Description

Occurs when one of the action's properties changes.

Applications cannot use the protected OnChange event. It is used internally to manage the relationship between the properties of the action and the corresponding properties of the action's clients.

Component writers can use OnChange in descendent objects to respond when the action's properties change.

See Also