Vcl.Outline.TCustomOutline.EndUpdate

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

procedure EndUpdate;

C++

HIDESBASE void __fastcall EndUpdate();

Properties

Type Visibility Source Unit Parent
procedure
function
public
Vcl.Outline.pas
Vcl.Outline.hpp
Vcl.Outline TCustomOutline

Description

Performs the reindexing and repaints deferred by a call to BeginUpdate.

Call EndUpdate at the end of a segment of code that began with a call to BeginUpdate. Every time BeginUpdate is called, an internal counter is incremented. When EndUpdate is called, the counter is decremented. When every call to BeginUpdate has been matched by a call to EndUpdate, EndUpdate fixes up the indexes and repaints the outline.

See Also