System.Classes.TComponent.Updating

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

procedure Updating; dynamic;

C++

DYNAMIC void __fastcall Updating();

Properties

Type Visibility Source Unit Parent
procedure
function
protected
System.Classes.pas
System.Classes.hpp
System.Classes TComponent

Description

Sets the csUpdating state in the component's ComponentState property.

Do not call Updating directly. It is used internally to indicate that the component is about to be updated. A call to Updating, which sets the csUpdating flag, is always followed by a call to Updated, which clears the flag.

See Also