ColorFromArgb Method (Byte, Byte, Byte)

Creates a Color from the specified 8-bit color values (red, green, and blue). The alpha value is implicitly 255 (fully opaque).

 

Namespace:  WebSupergoo.WordGlue4.Rendering
Assembly:  WordGlue4 (in WordGlue4.dll) Version: 4.1.0.0 (4.1.0.0)
Syntax
public static Color FromArgb(
        byte red,
        byte green,
        byte blue
)

Parameters

red
Type: SystemByte
The red component value. Valid values are 0 through 255.
green
Type: SystemByte
The green component value. Valid values are 0 through 255.
blue
Type: SystemByte
The blue component value. Valid values are 0 through 255.

Return Value

Type: Color
The Color that this method creates.
See Also