C# Класс entity.MetaEditor2.ColorHandler.RGB

Handle conversions between RGB and HSV (and Color types, as well).
Показать файл Открыть проект Примеры использования класса

Открытые свойства

Свойство Тип Описание
Alpha int
Blue int
Green int
Red int

Открытые методы

Метод Описание
RGB ( int R, int G, int B ) : System

Initializes a new instance of the RGB struct.

RGB ( int A, int R, int G, int B ) : System

Initializes a new instance of the RGB struct.

ToString ( ) : string

The to string.

Описание методов

RGB() публичный Метод

Initializes a new instance of the RGB struct.
public RGB ( int R, int G, int B ) : System
R int The R.
G int The G.
B int The B.
Результат System

RGB() публичный Метод

Initializes a new instance of the RGB struct.
public RGB ( int A, int R, int G, int B ) : System
A int The A.
R int The R.
G int The G.
B int The B.
Результат System

ToString() публичный Метод

The to string.
public ToString ( ) : string
Результат string

Описание свойств

Alpha публичное свойство

The alpha.
public int Alpha
Результат int

Blue публичное свойство

The blue.
public int Blue
Результат int

Green публичное свойство

The green.
public int Green
Результат int

Red публичное свойство

The red.
public int Red
Результат int