GoDigram for .NET Framework and .NET Core
Northwoods.Go.Draw Namespace / GoColor Structure / ColorFromHsl Method
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
    ColorFromHsl Method
    In This Topic
    Creates a System.Drawing.Color structure from the three HSL component values.
    Syntax
    public static Color ColorFromHsl( 
       float hue,
       float saturation,
       float luminance
    )

    Parameters

    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.

    Return Value

    Returns a System.Drawing.Color 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. Alpha is set to 1.0f (fully opaque). This is more efficient than GoColor.FromHsl(hue, saturation, luminance).Color
    See Also