CmykColor
Device CMYK color with cyan, magenta, yellow, and key (black) components; use for print-oriented color workflows.
Definition
Namespace:Telerik.Windows.Documents.Fixed.Model.ColorSpaces
Assembly:Telerik.Windows.Documents.Fixed.dll
Syntax:
public class CmykColor : ColorBase, IEquatable<ColorBase>
Inheritance: objectColorBaseCmykColor
Implements:
Inherited Members
Constructors
Creates a CmykColor with all components set to 0.
public CmykColor()
Creates a CmykColor with explicit cyan, magenta, yellow, and key (black) values.
public CmykColor(double c, double m, double y, double k)
The cyan component of the color, a value between 0.0 and 1.0.
mdoubleThe magenta component of the color, a value between 0.0 and 1.0.
ydoubleThe yellow component of the color, a value between 0.0 and 1.0.
kdoubleThe key (black) component of the color, a value between 0.0 and 1.0.
Methods
Properties
Gets or sets the cyan component, 0.0–1.0.
public double C { get; set; }
The cyan component value.
Gets or sets the key (black) component, 0.0–1.0.
public double K { get; set; }
The key component value.
Gets or sets the magenta component, 0.0–1.0.
public double M { get; set; }
The magenta component value.