SELECTIVECOLORINFO
Delphi Syntax:
SELECTIVECOLORINFO= Packed Record
cCyan: Shortint;
cMagenta: Shortint;
cYellow: Shortint;
cBlack: Shortint;
end;
C++ Builder Syntax:
struct SELECTIVECOLORINFO
{
Shortint cCyan;
Shortint cMagenta;
Shortint cYellow;
Shortint cBlack;
};
The SELECTIVECOLORINFO record (structure) contains the information needed for a single "Selected Color", which is used mainly in the SelectiveColor method.
Member |
Description |
cCyan |
Value that specifies the percentage of cyan in a color. Valid values range from –100 to 100, which is interpreted as –100% to 100%. |
cMagenta |
Value that specifies the percentage of magenta in a color. Valid values range from –100 to 100, which is interpreted as –100% to 100%. |
cYellow |
Value that specifies the percentage of yellow in a color. Valid values range from –100 to 100, which is interpreted as –100% to 100%. |
cBlack |
Value that specifies the percentage of black in a color. Valid values range from –100 to 100, which is interpreted as –100% to 100%. |