Namespace: MADE.App.Design.Color
Defines an interface for a color component.
public interface IColor
Platform | Version |
---|---|
.NET Standard | 2.0 |
Xamarin.Android | 8.1 |
Xamarin.iOS | 1.0 |
UWP | 10.0.16299 |
Gets or sets the alpha component of the color.
byte A { get; set; }
Gets or sets the red component of the color.
byte R { get; set; }
Gets or sets the green component of the color.
byte G { get; set; }
Gets or sets the blue component of the color.
byte B { get; set; }