Vcl.ImgList.TCustomImageList.RegisterChanges

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

procedure RegisterChanges(Value: TChangeLink);

C++

void __fastcall RegisterChanges(TChangeLink* Value);

Properties

Type Visibility Source Unit Parent
procedure
function
public
Vcl.ImgList.pas
Vcl.ImgList.hpp
Vcl.ImgList TCustomImageList

Description

Registers an object to be notified when changes occur in the image list.

Use the RegisterChanges method to have an object notified whenever changes occur in the image list. The TChangeLink's OnChange event is called whenever a change in the image list occurs.

Create a change link object for each object that should be notified of changes. Register each object by calling RegisterChanges and passing its change link object as the Value parameter. The OnChange event of all registered change link objects is then triggered when a change occurs in the image list. Any code assigned to the OnChange event handlers will execute.

See Also