Enum IGDIPlus.TGPColorChannelFlags
This is a Beta Read Only version of this page. Please review and send recommendations to mitov@mitov.com. We will enable the editing as soon as we are happy with the overall Wiki site.
Package: SignalLabBasicPkg
Unit: IGDIPlus
Contents |
Syntax
Delphi:
type TGPColorChannelFlags = (ColorChannelFlagsC, ColorChannelFlagsM, ColorChannelFlagsY, ColorChannelFlagsK, ColorChannelFlagsLast);
C++ Builder:
enum TGPColorChannelFlags {ColorChannelFlagsC, ColorChannelFlagsM, ColorChannelFlagsY, ColorChannelFlagsK, ColorChannelFlagsLast};
Visual C++ (MFC):
enum CTGPColorChannelFlags {ColorChannelFlagsC, ColorChannelFlagsM, ColorChannelFlagsY, ColorChannelFlagsK, ColorChannelFlagsLast};
Summary
Specifies individual channels in the CMYK (cyan, magenta, yellow, black) color space.
Description
Defines enumeration that specifies individual channels in the CMYK (cyan, magenta, yellow, black) color space. This enumeration is used by the TGPImageAttributes.SetOutputChannel method.
Values
ColorChannelFlagsC | Specifies the cyan color channel. |
ColorChannelFlagsM | Specifies the magenta color channel. |
ColorChannelFlagsY | Specifies the yellow color channel. |
ColorChannelFlagsK | Specifies the black color channel. |
ColorChannelFlagsLast | Specifies the last item of the enumeration. |