Class CmykaColorViewModel
Represents a ViewModel of the CMYK (Cyan, Magenta, Yellow and Key/Black) representation of a color.
Inherited Members
Namespace: Telerik.Windows.Controls.ColorEditor.ViewModel
Assembly: Telerik.Windows.Controls.Input.dll
Syntax
public class CmykaColorViewModel : ColorViewModel, INotifyPropertyChanged, IDisposable
Constructors
CmykaColorViewModel()
Declaration
public CmykaColorViewModel()
Properties
Cyan
Gets or sets the Cyan channel of the CMYK color view model.
Declaration
public double Cyan { get; set; }
Property Value
System.Double
|
Key
Gets or sets the Key(Black) channel of the CMYK color view model.
Declaration
public double Key { get; set; }
Property Value
System.Double
|
Magenta
Gets or sets the Magenta channel of the CMYK color view model.
Declaration
public double Magenta { get; set; }
Property Value
System.Double
|
Yellow
Gets or sets the Yellow channel of the CMYK color view model.
Declaration
public double Yellow { get; set; }
Property Value
System.Double
|
Methods
UpdateFromUnifiedColor(UnifiedColor)
Updates the color of from a unified color.
Declaration
public override void UpdateFromUnifiedColor(UnifiedColor colorScheme)
Parameters
UnifiedColor
colorScheme
|