Vcl.Controls.IDockManager.BeginUpdate

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

procedure BeginUpdate;

C++

virtual void __fastcall BeginUpdate() = 0 ;

Properties

Type Visibility Source Unit Parent
procedure
function
public
Vcl.Controls.pas
Vcl.Controls.hpp
Vcl.Controls IDockManager

Description

Responds when the docked controls are about to change.

BeginUpdate is called before controls are docked or undocked.

Once all docking or undocking is complete, the EndUpdate method is called so that the dock manager can make any final adjustments to reflect the final set of docked controls. Every call to BeginUpdate should be paired with a call to EndUpdate. BeginUpdate/EndUpdate pairs can be nested.

See Also