C# 클래스 AntTweakBar.Variable

The base class for all AntTweakBar variables.
상속: IVariable
파일 보기 프로젝트 열기: TomCrypto/AntTweakBar.NET 1 사용 예제들

Private Properties

프로퍼티 타입 설명
Dispose void

공개 메소드들

메소드 설명
Dispose ( ) : void
SetDefinition ( String def ) : void

Sets this variable's properties from a definition string.

ToString ( ) : String

보호된 메소드들

메소드 설명
ThrowIfDisposed ( ) : void

Throws an ObjectDisposedException if this variable has been disposed.

Variable ( Bar parent, String>.Action initFunc, String def = null, bool initLabel = true ) : System

Creates a new variable in a given AntTweakBar bar.

비공개 메소드들

메소드 설명
Dispose ( bool disposing ) : void

메소드 상세

Dispose() 공개 메소드

public Dispose ( ) : void
리턴 void

SetDefinition() 공개 메소드

Sets this variable's properties from a definition string.
public SetDefinition ( String def ) : void
def String An AntTweakBar definition string, excluding the name prefix.
리턴 void

ThrowIfDisposed() 보호된 메소드

Throws an ObjectDisposedException if this variable has been disposed.
protected ThrowIfDisposed ( ) : void
리턴 void

ToString() 공개 메소드

public ToString ( ) : String
리턴 String

Variable() 보호된 메소드

Creates a new variable in a given AntTweakBar bar.
protected Variable ( Bar parent, String>.Action initFunc, String def = null, bool initLabel = true ) : System
parent Bar The bar the variable should be created in.
initFunc String>.Action A delegate which will initialize the variable.
def String An optional definition string for the new variable.
initLabel bool Whether to initialize the variable's label.
리턴 System