Value - property of the PmgSlider object
Description:
Value corresponding to the slider button and entered in the
ValueMin,
ValueMax range.
Note:
Property access
for read and write. The preset value of this property is defined in the "
Value" configurator of this object. If it is written to this property and if this property is linked to the data binding
PP,
AP,
SP,
OP or
GP, then the value is transferred also into the source of this binding.
This property is also functional in
Web panels.
Example:
JavaScriptVBScriptSelect and copy to clipboard
var oSlider = pMe.Items("/Slider");
var value = oSlider.Value; //reading
oSlider.Value = 70; //writing
Dim oSlider, value
Set oSlider = pMe.Items("/Slider")
value = oSlider.Value 'reading
oSlider.Value = 70 'writing