Color

Color(int, int, int, int)

Initializes a new instance of the Color class.

public Color(int alpha, int red, int green, int blue)
Parameter Type Description
alpha Int32 The alpha component from 0 to 255.
red Int32 The red component from 0 to 255.
green Int32 The green component from 0 to 255.
blue Int32 The blue component from 0 to 255.

See Also


Color(int, int, int)

Initializes a new instance of the Color class.

public Color(int red, int green, int blue)
Parameter Type Description
red Int32 The red component from 0 to 255.
green Int32 The green component from 0 to 255.
blue Int32 The blue component from 0 to 255.

See Also