GoDigram for .NET Framework and .NET Core
Northwoods.Go.Draw Namespace / GoColor Structure / SetAhsl 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 HSL color model.
The "Saturation" component of the color according to the HSL color model.
The "Luminance" component of the color according to the HSL color model.
In This Topic
    SetAhsl Method
    In This Topic
    Sets the color of the Northwoods.Go.Draw.GoColor from the four AHSL component values.
    Syntax
    public void SetAhsl( 
       float alpha,
       float hue,
       float saturation,
       float luminance
    )

    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 HSL color model.
    saturation
    The "Saturation" component of the color according to the HSL color model.
    luminance
    The "Luminance" component of the color according to the HSL 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. This is more efficient than setting each of the properties sequentially.
    See Also