Interface IColor
Define una serie de métodos a implementar por un tipo que exponga información de color utilizando espacios de color de 8 bits por canal.
Namespace: TheXDS.MCART.Types.Base
Assembly: MCART.Coloring.dll
Syntax
public interface IColor
Properties
| Edit this page View SourceA
Componente Alfa del color.
Declaration
byte A { get; set; }
Property Value
Type | Description |
---|---|
byte |
B
Componente Azul del color.
Declaration
byte B { get; set; }
Property Value
Type | Description |
---|---|
byte |
G
Componente Verde del color.
Declaration
byte G { get; set; }
Property Value
Type | Description |
---|---|
byte |
R
Componente Rojo del color.
Declaration
byte R { get; set; }
Property Value
Type | Description |
---|---|
byte |