FMX.ImgList.TCustomImageList.DoChange

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

procedure DoChange; override;

C++

virtual void __fastcall DoChange();

Properties

Type Visibility Source Unit Parent
procedure
function
protected
FMX.ImgList.pas
FMX.ImgList.hpp
FMX.ImgList TCustomImageList

Description

Declares the method to handle changes in the image list.

FMX.ImgList.TCustomImageList.DoChange inherits from System.ImageList.TBaseImageList.DoChange. All content below this line refers to System.ImageList.TBaseImageList.DoChange.

Declares the method to handle changes in the image list.

Descendants of TBaseImageList, for example TCustomImageList, implement DoChange as executing actions to handle changes in the corresponding image list. After other actions, DoChange, usually, calls the OnChange event handler if it is assigned.

DoChange is called by Change. Do not call DoChange from your code explicitly, call Change to activate DoChange.

See Also