GoDigram for .NET Framework and .NET Core
Northwoods.Go.Draw Namespace / GoColor Structure / SetHsb Method
The "Hue" component of the color according to the HSB color model.
The "Saturation" component of the color according to the HSB color model.
The "Brightness" component of the color according to the HSB color model.
In This Topic
    SetHsb Method
    In This Topic
    Sets the color of the Northwoods.Go.Draw.GoColor from the three HSB component values.
    Syntax
    public void SetHsb( 
       float hue,
       float saturation,
       float brightness
    )

    Parameters

    hue
    The "Hue" component of the color according to the HSB color model.
    saturation
    The "Saturation" component of the color according to the HSB color model.
    brightness
    The "Brightness" component of the color according to the HSB color model.
    Remarks
    The hue parameter value ranges from 0.0f to 360.0f, inclusive. Each of the other 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