FMX.StdActns.TCustomValueRange.Tracking

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

property Tracking: boolean read FTracking write SetTracking;

C++

__property bool Tracking = {read=FTracking, write=SetTracking, nodefault};

Properties

Type Visibility Source Unit Parent
property public
FMX.StdActns.pas
FMX.StdActns.hpp
FMX.StdActns TCustomValueRange

Description

Controls whether the BeforeChange and AfterChange events are fired on each property change.

If Tracking = True, then the BeforeChange and AfterChange events are fired on each property change. If Tracking = False, then the BeforeChange and AfterChange events are not fired.

Note: The OnChanged and OnTrackingChange events are fired independently from the Tracking value.

See Also