C# Класс AntTweakBar.ColorVariable

An AntTweakBar variable which can hold an RGB color value.
Наследование: Variable, IValueVariable
Показать файл Открыть проект Примеры использования класса

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

Метод Описание
ColorVariable ( Bar bar, float r, float g, float b, String def = null ) : System

Creates a new RGB color variable in a given bar.

OnChanged ( EventArgs e ) : void

Raises the Changed event.

ToString ( ) : String

Приватные методы

Метод Описание
GetCallback ( IntPtr pointer, IntPtr clientData ) : void

Called by AntTweakBar when AntTweakBar needs the variable's value.

InitColorVariable ( Variable var, String id ) : void

Initialization delegate, which creates the RGB color variable.

IsValid ( float r, float g, float b ) : bool

Checks if this variable can hold this value.

SetCallback ( IntPtr pointer, IntPtr clientData ) : void

Called by AntTweakBar when the user changes the variable's value.

ValidateAndSet ( float r, float g, float b ) : void

Tries to set this variable's value, validating it.

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

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

Creates a new RGB color variable in a given bar.
public ColorVariable ( Bar bar, float r, float g, float b, String def = null ) : System
bar Bar The bar to create the RGB color variable in.
r float The initial red channel value of the variable.
g float The initial green channel value of the variable.
b float The initial blue channel value of the variable.
def String An optional definition string for the new variable.
Результат System

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

Raises the Changed event.
public OnChanged ( EventArgs e ) : void
e System.EventArgs
Результат void

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

public ToString ( ) : String
Результат String