GoDigram for .NET Framework and .NET Core
Northwoods.Go.Draw Namespace / GoColor Structure / SetCmy Method
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
    SetCmy Method
    In This Topic
    Sets the color of the Northwoods.Go.Draw.GoColor from the three CMY component values.
    Syntax
    public void SetCmy( 
       float cyan,
       float magenta,
       float yellow
    )

    Parameters

    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.
    Remarks
    Each of the parameter values range from 0.0f to 1.0f, inclusive. Alpha is unmodified. This is more efficient than setting each of the properties sequentially.
    See Also