GoDigram for .NET Framework and .NET Core
Northwoods.Go.Draw Namespace / GoColor Structure / FromAcmyk Method
The transparency of the color; 0.0f is completely transparent, 1.0f is completely opaque.
The "Cyan" component of the color according to the CMYK color model.
The "Magenta" component of the color according to the CMYK color model.
The "Yellow" component of the color according to the CMYK color model.
The "Key" component (amount of black) of the color according to the CMYK color model.
In This Topic
    FromAcmyk Method
    In This Topic
    Creates a Northwoods.Go.Draw.GoColor structure from the five ACMYK component values.
    Syntax
    public static GoColor FromAcmyk( 
       float alpha,
       float cyan,
       float magenta,
       float yellow,
       float key
    )

    Parameters

    alpha
    The transparency of the color; 0.0f is completely transparent, 1.0f is completely opaque.
    cyan
    The "Cyan" component of the color according to the CMYK color model.
    magenta
    The "Magenta" component of the color according to the CMYK color model.
    yellow
    The "Yellow" component of the color according to the CMYK color model.
    key
    The "Key" component (amount of black) of the color according to the CMYK color model.

    Return Value

    Returns a Northwoods.Go.Draw.GoColor structure.
    Remarks
    Each of the parameter values range from 0.0f to 1.0f, inclusive.
    See Also