C# Class Axiom.Samples.ParamsPanel

Basic parameters panel widget.
Inheritance: Widget
Show file Open project: WolfgangSt/axiom Class Usage Examples

Protected Properties

Property Type Description
names IList
namesArea Axiom.Overlays.Elements.TextArea
values IList
valuesArea Axiom.Overlays.Elements.TextArea

Public Methods

Method Description
GetParamValue ( String paramName ) : String

GetParamValue ( int index ) : String

ParamsPanel ( String name, Real width, int lines ) : System

Do not instantiate any widgets directly. Use SdkTrayManager.

SetParamValue ( String paramName, String paramValue ) : void

SetParamValue ( int index, String paramValue ) : void

Protected Methods

Method Description
UpdateText ( ) : void

Internal method - updates text areas based on name and value lists.

Method Details

GetParamValue() public method

public GetParamValue ( String paramName ) : String
paramName String
return String

GetParamValue() public method

public GetParamValue ( int index ) : String
index int
return String

ParamsPanel() public method

Do not instantiate any widgets directly. Use SdkTrayManager.
public ParamsPanel ( String name, Real width, int lines ) : System
name String
width Real
lines int
return System

SetParamValue() public method

public SetParamValue ( String paramName, String paramValue ) : void
paramName String
paramValue String
return void

SetParamValue() public method

public SetParamValue ( int index, String paramValue ) : void
index int
paramValue String
return void

UpdateText() protected method

Internal method - updates text areas based on name and value lists.
protected UpdateText ( ) : void
return void

Property Details

names protected property

protected IList names
return IList

namesArea protected property

protected TextArea,Axiom.Overlays.Elements namesArea
return Axiom.Overlays.Elements.TextArea

values protected property

protected IList values
return IList

valuesArea protected property

protected TextArea,Axiom.Overlays.Elements valuesArea
return Axiom.Overlays.Elements.TextArea