Color Constructor (Byte, Byte, Byte)

SFML.Net

Color Constructor (Byte, Byte, Byte)
Construct the color from its red, green and blue components

Namespace: SFML.Graphics
Assembly: sfmlnet-graphics-2 (in sfmlnet-graphics-2.dll) Version: 2.2.0.0 (2.2.0)
Syntax
public Color(
	byte red,
	byte green,
	byte blue
)
Public Sub New ( 
	red As Byte,
	green As Byte,
	blue As Byte
)
public:
Color(
	unsigned char red, 
	unsigned char green, 
	unsigned char blue
)
new : 
        red : byte * 
        green : byte * 
        blue : byte -> Color

Parameters

red
Type: SystemByte
Red component
green
Type: SystemByte
Green component
blue
Type: SystemByte
Blue component
See Also