Vcl.ImgList.TCustomImageList.Create

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

constructor Create(AOwner: TComponent); override;

C++

__fastcall virtual TCustomImageList(System::Classes::TComponent* AOwner);
__fastcall TCustomImageList(int AWidth, int AHeight);

Properties

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

Description

Creates an empty image list.

Call Create to instantiate an image list at runtime. ImageLists placed on forms or data modules at design time are created automatically. Specify the owner of the new imagelist using the AOwner parameter.

The new image list contains no images and has a default size of 16 by 16 pixels.

See Also