GoDigram for .NET Framework and .NET Core
Northwoods.Go.Draw Namespace / GoColor Structure / FromAhsb Method
The transparency of the color; 0.0f is completely transparent, 1.0f is completely opaque.
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
    FromAhsb Method
    In This Topic
    Creates a Northwoods.Go.Draw.GoColor structure from the four AHSB component values.
    Syntax
    public static GoColor FromAhsb( 
       float alpha,
       float hue,
       float saturation,
       float brightness
    )

    Parameters

    alpha
    The transparency of the color; 0.0f is completely transparent, 1.0f is completely opaque.
    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.

    Return Value

    Returns a Northwoods.Go.Draw.GoColor structure.
    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.
    See Also