System.Drawing.Color.Color Constructors
This element is not available using the selected API.
This element is not available using the selected API.
In this article
Initializes a new instance of the Color class.
Name | Description | |
---|---|---|
Public method | Color() | Initializes a new instance of the Color class that is black. |
Public method | Color(int32_t r, int32_t g, int32_t b) | Initializes a new instance of the Color class with the specified color components. |
Public method | Color(int32_t r, int32_t g, int32_t b, int32_t a) | Initializes a new instance of the Color class with the given color and alpha components. |
Public method | Color(const Color& obj) | Initializes a new instance of the Color class that is a copy the given object. |
public:
Color ()
public:
Color (
int32_t r,
int32_t g,
int32_t b
)
public:
Color (
int32_t r,
int32_t g,
int32_t b,
int32_t a
)
public:
Color (
const Color& obj
)
Windows, Linux, Android
Initializes a new instance of the Color class.
Name | Description | |
---|---|---|
Public method | Color() | Initializes a new instance of the Color class that is black. |
Public method | Color(int r, int g, int b) | Initializes a new instance of the Color class with the specified color components. |
Public method | Color(int r, int g, int b, int a) | Initializes a new instance of the Color class with the given color and alpha components. |
public Color ()
public Color (
int r,
int g,
int b
)
public Color (
int r,
int g,
int b,
int a
)
Windows, Linux, Android
Initializes a new instance of the Color class.
Name | Description | |
---|---|---|
Public method | Color() | Initializes a new instance of the Color class that is black. |
Public method | Color(r, g, b) | Initializes a new instance of the Color class with the specified color components. |
Public method | Color(r, g, b, a) | Initializes a new instance of the Color class with the given color and alpha components. |
__init__ ( self )
__init__ ( self, r, g, b )
__init__ ( self, r, g, b, a )
Windows, Linux, Android
In this article