|
MenuSlider Constructor
|
Create menu slider.
Namespace:
Karamba.GHopper.Utilities.UIWidgets
Assembly:
karambaGH (in karambaGH.dll) Version: 1.15.0.0 (1.15.0.0)
Syntaxpublic MenuSlider(
int index,
string id,
double min,
double max,
double value,
int numDecimals
)
Public Sub New (
index As Integer,
id As String,
min As Double,
max As Double,
value As Double,
numDecimals As Integer
)
public:
MenuSlider(
int index,
String^ id,
double min,
double max,
double value,
int numDecimals
)
new :
index : int *
id : string *
min : float *
max : float *
value : float *
numDecimals : int -> MenuSlider
Parameters
- index
- Type: SystemInt32
Control index. - id
- Type: SystemString
Slider id. - min
- Type: SystemDouble
Minimum value. - max
- Type: SystemDouble
Maximum value. - value
- Type: SystemDouble
Current value. - numDecimals
- Type: SystemInt32
Number of decimals. Should be inside the interval [0,12].
See Also