GoDigram for .NET Framework and .NET Core
Northwoods.Go.Draw Namespace / GoColor Structure / ColorFromRgb Method
The "Red" component of the color according to the RGB color model.
The "Green" component of the color according to the RGB color model.
The "Blue" component of the color according to the RGB color model.
In This Topic
    ColorFromRgb Method
    In This Topic
    Creates a System.Drawing.Color structure from the three RGB component values.
    Syntax
    public static Color ColorFromRgb( 
       float red,
       float green,
       float blue
    )

    Parameters

    red
    The "Red" component of the color according to the RGB color model.
    green
    The "Green" component of the color according to the RGB color model.
    blue
    The "Blue" component of the color according to the RGB color model.

    Return Value

    Returns a System.Drawing.Color structure.
    Remarks
    Each of the parameter values range from 0.0f to 1.0f, inclusive. Alpha is set to 1.0f (fully opaque).
    See Also