Returns or sets whether the incrementor in the slider control is visible or hidden.
Object.DecrementorVisble [ = bVisible ]
The DecrementorVisible property syntax has the following parts:
|
Name |
Type |
Description |
|
Object |
ASlider |
ASlider control |
|
bVisible |
Bool |
A boolean expression that specifies whether the object is visible or hidden. |
bVisible can be one of the following:
|
Value |
Description |
|
True * |
The decrementor is visible. |
|
False |
The decrementor is hidden. |
By default the incrementor is visible. Use this property to hide the incrementor in case where its not needed.
The following example hides the slider decremenor and incrementor.
sld1.DecrementorVisible=False
sld1.IncrementorVisible=False