FMX.Controls.TControl.EndUpdate

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

procedure EndUpdate; virtual;

C++

virtual void __fastcall EndUpdate(void);

Properties

Type Visibility Source Unit Parent
procedure
function
public
FMX.Controls.pas
FMX.Controls.hpp
FMX.Controls TControl

Description

Marks the end of an update session of the control and its children.

The update session must be started first by calling BeginUpdate.

EndUpdate decreases the FUpdating semaphore. If all update sessions end and FUpdating is 0, EndUpdate invokes Realign to process layout changes.

See Also