FMX.Types.TCustomCaret.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.Types.pas
FMX.Types.hpp
FMX.Types TCustomCaret

Description

Keeps the number of calls to BeginUpdate that have not been matched by calls to EndUpdate.

TCustomCaret uses UpdateCount to keep track of calls to the BeginUpdate and EndUpdate methods. Every time a call is made to BeginUpdate, TCustomCaret increments the value of UpdateCount. Every call to EndUpdate causes TCustomCaret to decrement UpdateCount. When a call to EndUpdate decrements UpdateCount to 0, EndUpdate updates the flasher.

See Also