FMX.ImgList.TCustomImageList.Dormant

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

property Dormant: Boolean read GetDormant write SetDormant;

C++

__property bool Dormant = {read=GetDormant, write=SetDormant, nodefault};

Properties

Type Visibility Source Unit Parent
property public
FMX.ImgList.pas
FMX.ImgList.hpp
FMX.ImgList TCustomImageList

Description

Indicates whether actual images are stored with bitmaps referenced in the Source collection.

Dormant is used to reduce the memory usage.

Dormant is True if all multi-resolution bitmaps MultiResBitmap in the Source collection have their TCustomBitmapItem.Dormant properties True.

Setting True to Dormant, sets True to TCustomBitmapItem.Dormant of all multi-resolution bitmaps in the Source collection.

See TCustomBitmapItem.Dormant for more information.

See Also