Vcl.ImgList.TColorDepth

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

TColorDepth = (cdDefault, cdDeviceDependent, cd4Bit, cd8Bit, cd16Bit, cd24Bit, cd32Bit);

C++

enum DECLSPEC_DENUM TColorDepth : unsigned char { cdDefault, cdDeviceDependent, cd4Bit, cd8Bit, cd16Bit, cd24Bit, cd32Bit };

Properties

Type Visibility Source Unit Parent
enum public
Vcl.ImgList.pas
Vcl.ImgList.hpp
Vcl.ImgList Vcl.ImgList

Description

Color depth of list images.

TColorDepth is the color depth of images in the list. This is the number of bits to represent color for each pixel. The following table describes the possible values:



Value Meaning

cdDefault

Default color depth.

cdDeviceDependent

Device dependent color depth.

cd4Bit

4 bit color depth.

cd8Bit

8 bit color depth.

cd16Bit

16 bit color depth.

cd24Bit

24 bit color depth.

cd32Bit

32 bit color depth.



See Also