C# Класс SadConsole.Readers.REXPaint.Color

A RexPaint color.
Показать файл Открыть проект

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

Свойство Тип Описание
B byte
G byte
R byte

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

Метод Описание
Color ( byte r, byte g, byte b ) : System

Creates a new RexPaint color with the specified RGB channels.

operator ( ) : bool

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

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

Creates a new RexPaint color with the specified RGB channels.
public Color ( byte r, byte g, byte b ) : System
r byte The red channel of the color.
g byte The green channel of the color.
b byte The blue channel of the color.
Результат System

operator() публичный статический Метод

public static operator ( ) : bool
Результат bool

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

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

The blue channel of the color.
public byte B
Результат byte

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

The green channel of the color.
public byte G
Результат byte

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

The red channel of the color.
public byte R
Результат byte