Namespace: Standard
Class: Standard/ArcGISRGBColor
Since: 1.0.0
Inheritance: ArcGISColor->ArcGISRGBColor
Summary
A RGB object which is derived from a color object.
Constructors
ArcGISRGBColor(uint value)
Creates a RGB color from a value. This allocates memory that must be deleted.
Since 1.0.0
Arguments
| Name | Type | Summary |
|---|---|---|
value | uint | The 32 bit RGBA color value. |
Creates a RGB color from a set of values. This allocates memory that must be deleted.
Since 1.0.0
Arguments
Properties
| Property | Type | Nullable | Readonly | Summary |
|---|---|---|---|---|
Alpha | byte | No | Yes | The alpha value. |
Blue | byte | No | Yes | The blue value. |
Green | byte | No | Yes | The green value. |
Red | byte | No | Yes | The red value. |
RGBA | uint | No | Yes | The color value. |
Alpha
byte Alpha
The alpha value.
The alpha color value from the RGB color object. The value is between 0 - 255. If alpha is 255 then the color is opaque.
Blue
byte Blue
The blue value.
The blue color value from the RGB color object. The value is between 0 - 255.
Green
byte Green
The green value.
The green color value from the RGB color object. The value is between 0 - 255.
Red
byte Red
The red value.
The red color value from the RGB color object. The value is between 0 - 255.
RGBA
uint RGBA
The color value.
The color values as a single 32 bit value from the RGB color object. The color is made of 4 8 bit values Alpha, blue, green, red (0xAABBGGRR) between 0 - 255.