Skip to content
This repository has been archived by the owner on Apr 5, 2021. It is now read-only.

Latest commit

 

History

History
52 lines (34 loc) · 671 Bytes

File metadata and controls

52 lines (34 loc) · 671 Bytes

IColor interface

Namespace: MADE.App.Design.Color

Defines an interface for a color component.

public interface IColor

Supported platforms

Platform Version
.NET Standard 2.0
Xamarin.Android 8.1
Xamarin.iOS 1.0
UWP 10.0.16299

Properties

A

Gets or sets the alpha component of the color.

byte A { get; set; }

R

Gets or sets the red component of the color.

byte R { get; set; }

G

Gets or sets the green component of the color.

byte G { get; set; }

B

Gets or sets the blue component of the color.

byte B { get; set; }