A combination of flags that specify the drawing style.
Maps to Windows'
ILD enumeration..
Namespace:
ShellBoost.Core.WindowsShell
Assembly:
ShellBoost.Core (in ShellBoost.Core.dll) Version: 1.8.3.0
Syntax [FlagsAttribute]
public enum ILD
Members
| Member name | Value | Description |
---|
| ILD_NORMAL | 0 |
Draws the image using the background color for the image list.
|
| ILD_TRANSPARENT | 1 |
Draws the image transparently using the mask, regardless of the background color.
|
| ILD_MASK | 16 |
Draws the mask.
|
| ILD_IMAGE | 32 |
If the overlay does not require a mask to be drawn, set this flag.
|
| ILD_ROP | 64 |
Draws the image using the raster operation code.
|
| ILD_BLEND25 | 2 |
Draws the image, blending 25 percent with the blend color.
|
| ILD_BLEND50 | 4 |
Draws the image, blending 50 percent with the blend color
|
| ILD_OVERLAYMASK | 3840 |
Used to extract the overlay image.
|
| ILD_PRESERVEALPHA | 4096 |
Preserves the alpha channel in the destination.
|
| ILD_SCALE | 8192 |
Causes the image to be scaled to cx, cy instead of being clipped.
|
| ILD_DPISCALE | 16384 |
Scales the image to the current dpi of the display.
|
| ILD_ASYNC | 32768 |
Windows Vista and later. Draw the image if it is available in the cache. Do not extract it automatically.
|
| ILD_SELECTED | 4 |
Same as ILD_BLEND50.
|
| ILD_FOCUS | 2 |
Same as ILD_BLEND25.
|
| ILD_BLEND | 4 |
Same as ILD_BLEND50.
|
See Also