FMX.Memo.TCustomMemo.OnChangeTracking

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

property OnChangeTracking: TNotifyEvent read GetOnChangeTracking write SetOnChangeTracking;

C++

__property System::Classes::TNotifyEvent OnChangeTracking = {read=GetOnChangeTracking, write=SetOnChangeTracking};

Properties

Type Visibility Source Unit Parent
event public
FMX.Memo.pas
FMX.Memo.hpp
FMX.Memo TCustomMemo

Description

Occurs on any change in the memo's text.

Write an OnChangeTracking event handler to respond immediately to any changes made in the memo control's text. The OnChangeTracking event provides the first opportunity to respond to modifications that the user makes by typing into the memo control.

The Text property of the memo control is already updated and reflects any changes when OnChangeTracking is raised.

The difference between OnChangeTracking and OnChange is that OnChangeTracking occurs at each modification of text in the memo control.

Note: OnChangeTracking does not occur when only text representation characteristics are changed (for example, when changing TextAlign).

See Also