CMYKColor

CMYKColor class

Class for CMYK color. A null instance means CMYK is not used, and default RGB color is in use.

public class CMYKColor

Constructors

NameDescription
CMYKColor(object, object, object, object)Initializes a new instance of the CMYKColor class from CMYK values. CMYK values are expected in the range 0–100.

Methods

NameDescription
formatCMYKFormat this CMYKColor into a string “C_M_Y_K”, multiplying each internal component (0–1) by 100 and rounding.
parseCMYK(object)Parse a CMYK string of the form “C_M_Y_K” into a CMYKColor instance.
toStringOptional: a human-readable representation.

See Also