StdHeight
property for PowerScript controls
Applies to
HScrollBar
Description
If you enable the StdHeight property, the HScrollBar displays with
the standard height for your system.
Usage
In a painter
To enable standard height:
-
Select the StdHeight check box on the General page of the
control’s Properties view.
In scripts
The StdHeight property takes a boolean value. At runtime, as long as
StdHeight is true, setting the Height property has no effect. If you set
the StdHeight property to true, the scroll bar displays with the standard
height. If you set the StdHeight property to false, the scroll bar
displays with the height specified in the Height property.
The following line specifies that height for an HScrollBar, instead
of being standard, is set to the height specified in the Height
property.
|
1 |
hsb_1.StdHeight = FALSE |