TdxAlphaState Enum
In This Article
Enumerates available states of pixel transparency information that bitmaps can store.
#Declaration
Delphi
TdxAlphaState = (
asNoAlpha,
asSemitransparent,
asOpaque
);
#Members
Name |
---|
as
|
as
|
as
|
#Remarks
Options include:
Value | Description |
---|---|
as |
The pixel data does not include transparency information. The image is treated as opaque. |
as |
The pixel data includes transparency information. The image has at least one semi-transparent pixel. |
as |
The pixel data includes transparency information. The image has no transparent or semi-transparent pixels. |
The dxGetAlphaState global function returns a TdxAlphaState value.
See Also