Color Structure
This type is not available using the selected API. Instead the system type System.Drawing.Color is used.
This type is not available using the selected API. Instead the system type System.Drawing.Color is used.
In this article
Represents an RGBA (red, green, blue, alpha) color.
class Color
Represents a color that consists of red, green, blue and alpha components where each component is specified in the [0, 255] interval. An alpha value of 0 means the color is completely transparent and 255 a completely opaque color.
Windows, Linux, Android
The Color type has the following members.
Name | Description |
---|---|
Color | Initializes a new instance of the Color class. |
Name | Description |
---|---|
a | Gets the alpha component value of the Color. |
b | Gets the blue component value of the Color. |
g | Gets the green component value of the Color. |
r | Gets the red component value of the Color. |
Name | Description |
---|---|
operator!= | Determines whether the specified Color is differs from the current Color. |
operator= | Assignment operator. |
operator== | Determines whether the specified Color is equal to the current Color. |
swap | Swaps the internal representation with the specified Color. |
Tries to create a new Color instance from a string. |
In this article
Represents an RGBA (red, green, blue, alpha) color.
public class Color
Represents a color that consists of red, green, blue and alpha components where each component is specified in the [0, 255] interval. An alpha value of 0 means the color is completely transparent and 255 a completely opaque color.
Windows, Linux, Android
The Color type has the following members.
Name | Description |
---|---|
Color | Initializes a new instance of the Color class. |
Name | Description |
---|---|
a | Gets the alpha component value of the Color. |
b | Gets the blue component value of the Color. |
g | Gets the green component value of the Color. |
r | Gets the red component value of the Color. |
Name | Description |
---|---|
clone | Returns a copy of this Color object. |
equals | Overloaded. Determines whether two Color objects have the same value. |
Creates a new Color instance from a string. |
In this article
Represents an RGBA (red, green, blue, alpha) color.
class Color
Represents a color that consists of red, green, blue and alpha components where each component is specified in the [0, 255] interval. An alpha value of 0 means the color is completely transparent and 255 a completely opaque color.
Windows, Linux, Android
The Color type has the following members.
Name | Description |
---|---|
Color | Initializes a new instance of the Color class. |
Name | Description |
---|---|
a | Gets the alpha component value of the Color. |
b | Gets the blue component value of the Color. |
g | Gets the green component value of the Color. |
r | Gets the red component value of the Color. |
Name | Description |
---|---|
Creates a new Color instance from a string. |
In this article