Slider - property of the PmgSliderBox object
Description:
Returns reference to the internal
PmgSlider object.
Note:
Property access for
read only.
This property is also functional in
Web panels.
Example:
Obtains the value entered by slider. It is presumed, that the
oSliderBox variable is set to object of the
PmgSliderBox type.
JavaScriptVBScriptSelect and copy to clipboard
var oSliderBox = pMe.Items("/SlidBox");
var nValue = oSliderBox.Slider.Value;
Dim oSliderBox
Set oSliderBox = pMe.Items("/SlidBox")
Dim nValue
nValue = oSliderBox.Slider.Value