| ASLSliderWithEchoInitilizeSlider Method |
Initializes the slider
Namespace:
ASL
Assembly:
Assembly-CSharp (in Assembly-CSharp.dll) Version: 0.0.0.0
Syntax public void InitilizeSlider(
string _SliderLabel,
float _startingValue,
float _endingValue,
float _initialValue,
ASLObjectFloatCallback _functionToCallAfterChangingSlider
)
Public Sub InitilizeSlider (
_SliderLabel As String,
_startingValue As Single,
_endingValue As Single,
_initialValue As Single,
_functionToCallAfterChangingSlider As ASLObjectFloatCallback
)
public:
void InitilizeSlider(
String^ _SliderLabel,
float _startingValue,
float _endingValue,
float _initialValue,
ASLObjectFloatCallback^ _functionToCallAfterChangingSlider
)
member InitilizeSlider :
_SliderLabel : string *
_startingValue : float32 *
_endingValue : float32 *
_initialValue : float32 *
_functionToCallAfterChangingSlider : ASLObjectFloatCallback -> unit
Parameters
- _SliderLabel
- Type: SystemString
The label of the slider - _startingValue
- Type: SystemSingle
The starting value of the slider - _endingValue
- Type: SystemSingle
The ending value of the slider - _initialValue
- Type: SystemSingle
THe current value of the slider - _functionToCallAfterChangingSlider
- Type: ASLASLObjectFloatCallback
The function to be called after the value of this slider is received from other players
See Also