GoDigram for .NET Framework and .NET Core
Northwoods.Go.Draw Namespace / GoColor Structure / ColorFromAcmy 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 CMY color model.
The "Magenta" component of the color according to the CMY color model.
The "Yellow" component of the color according to the CMY color model.
In This Topic
    ColorFromAcmy Method
    In This Topic
    Creates a System.Drawing.Color structure from the four ACMY component values.
    Syntax
    public static Color ColorFromAcmy( 
       float alpha,
       float cyan,
       float magenta,
       float yellow
    )

    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 CMY color model.
    magenta
    The "Magenta" component of the color according to the CMY color model.
    yellow
    The "Yellow" component of the color according to the CMY color model.

    Return Value

    Returns a Northwoods.Go.Draw.GoColor
    Remarks
    Each of the parameter values range from 0.0f to 1.0f, inclusive. This is more efficient than GoColor.FromAcmy(alpha, cyan, magenta, yellow).Color
    See Also