RGBA class
Represent the elements color in RGB format.
public class RGBA
Public Members
name | description |
---|---|
RGBA(…) | Initializes a new instance of the RGBA class. This constructor is used to create an RGBA color with specified red, green, blue, and alpha values. |
Alpha { get; set; } | The alpha value in the range [0, 255] where 0 means transparent and 255 means opaque. Note:The setter for this property is obsolete. Please use the parameterized constructor to initialize it instead. Default = 255 |
Blue { get; set; } | The blue value in the range [0, 255]. Note:The setter for this property is obsolete. Please use the parameterized constructor to initialize it instead. |
Green { get; set; } | The green value in the range [0, 255]. Note:The setter for this property is obsolete. Please use the parameterized constructor to initialize it instead. |
Red { get; set; } | The red value in the range [0, 255]. Note:The setter for this property is obsolete. Please use the parameterized constructor to initialize it instead. |
See Also
- namespace Autodesk.DataExchange.DataModels