Eq2sliderbar (Data Type)¶
Description¶
This DataType includes data available to ISXEQ2 related to the eq2sliderbar UI element.
Inheritance¶
This datatype inherits all members and methods of eq2widget (which, in turn, inherits all members/methods of eq2baseobject.) Script writers are strongly encouraged to visit both of these pages before utilizing eq2sliderbar or any other UI related datatypes.
Properties¶
All property names valid for eq2widget, eq2baseobject, as well as any from the list below, can be used with GetProperty/SetProperty. (For more information on GetProperty/SetProperty, see eq2baseobject.)
- Value
- LowerLimit
- UpperLimit
Technical Notes¶
- The current percentage of the slider bar is: Percentage = Value / UpperLimit * 100 (To set the value as a percentage, you'd use the formula: Value = Percentage * UpperLimit / 100.)
- When setting the "Value", it should be between LowerLimit and UpperLimit (inclusive).