FMX.StdActns.TCustomValueRange.UpdateCount

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

property UpdateCount: integer read FUpdateCount;

C++

__property int UpdateCount = {read=FUpdateCount, nodefault};

Properties

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

Description

Counter of how many times update changes of the ValueRange properties have been started and not accomplished.

If UpdateCount > 0, then no update changes will be actually implemented, and all (Value, Min, Max, ViewportSize, and Frequency) properties will have old values. Update changes will be actually implemented only after calls to the EndUpdate method decrement UpdateCount to 0.

To set new values to these properties, use the New property.

See Also