Vcl.ImgList.TCustomImageList.GetImages

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

procedure GetImages(Index: Integer; Image, Mask: TBitmap);

C++

void __fastcall GetImages(int Index, Vcl::Graphics::TBitmap* Image, Vcl::Graphics::TBitmap* Mask);

Properties

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

Description

Returns a specified image and its mask as bitmaps.

Use GetImages to obtain the image (and its mask) identified by the Index parameter.

Index specifies the image (and mask) to return, where 0 identifies the first image, 1 the second image, and so on.

Image is a TBitmap object that receives the image of the bitmap.

Mask is a TBitmap object that receives the image of the mask.

See Also