Creates a Color structure from the specified 8-bit color values (red, green, and blue). The alpha value is implicitly 255 (fully opaque). Although this method allows a 32-bit value to be passed for each color component, the value of each component is limited to 8 bits.

Namespace: Docentric.Documents.ObjectModel
Assembly: Docentric.Documents.ObjectModel (in Docentric.Documents.ObjectModel.dll)
public static Color FromArgb( Byte red, Byte green, Byte blue )

Parameters

red
Type: Byte

The red component value for the new Color. Valid values are 0 through 255.

green
Type: Byte

The green component value for the new Color. Valid values are 0 through 255.

blue
Type: Byte

The blue component value for the new Color. Valid values are 0 through 255.

Return value

Type: Color
Return the Color.