GroupBox.Height
The GroupBox Control Object that is returned by the AddGroupBox function has a Height property. The Height property represents the height setting of the Group Box.
Syntax |
Object.Height = Value Where Object is the name of the variable (declared in your script) that is used to store the GroupBox Control Object that is returned by the AddGroupBox function. |
Description |
Sets the height of the Group Box. |
Arguments |
Value {integer} Defines the height setting of the Group Box. |
Returns |
Integer |
Example:
GroupBox1.Height = 10
Where:
- GroupBox1 is the name of the variable that stores the GroupBox Control Object returned by the AddGroupBox function
- 10 is the height setting for the Group Box.