Class
CmykaColorViewModel

Represents a ViewModel of the CMYK (Cyan, Magenta, Yellow and Key/Black) representation of a color.

Definition

Constructors

CmykaColorViewModel()

Declaration

cs-api-definition
public CmykaColorViewModel()

Properties

Cyan

Gets or sets the Cyan channel of the CMYK color view model.

Declaration

cs-api-definition
public double Cyan { get; set; }

Property Value

double

Key

Gets or sets the Key(Black) channel of the CMYK color view model.

Declaration

cs-api-definition
public double Key { get; set; }

Property Value

double

Magenta

Gets or sets the Magenta channel of the CMYK color view model.

Declaration

cs-api-definition
public double Magenta { get; set; }

Property Value

double

Yellow

Gets or sets the Yellow channel of the CMYK color view model.

Declaration

cs-api-definition
public double Yellow { get; set; }

Property Value

double

Methods

UpdateFromUnifiedColor(UnifiedColor)

Updates the color of from a unified color.

Declaration

cs-api-definition
public override void UpdateFromUnifiedColor(UnifiedColor colorScheme)

Parameters

colorScheme

UnifiedColor

Overrides ColorViewModel.UpdateFromUnifiedColor(UnifiedColor)