![]() |
Previous | Next |
The verticalAlignment attribute specifies or retrieves the vertical alignment of the control when the VIEW or parent SUBVIEW is stretched.
Syntax
elementID.verticalAlignment
Possible Values
This attribute is a read/write String.
Values | Description |
top | Default. Aligns the control to the top of the VIEW or parent SUBVIEW when resized. |
bottom | Aligns the control to the bottom of the VIEW or parent SUBVIEW when resized. |
center | Aligns the control to the vertical center of the VIEW or parent SUBVIEW when resized. |
stretch | Aligns the control to top and bottom margins of the View when resized. The control stretches to fit when the VIEW or parent SUBVIEW is stretched. The actual image does not grow or shrink unless it is resizable, but the clickable area grows or shrinks if not bounded by a clippingImage. |
Remarks
Unless verticalAlignment is set to “center”, the control retains its original distance from the specified edge, or from both edges if “stretch” is specified and the control is resizable. If the control is not resizable and “stretch” is specified, the clickable region is stretched instead.
You can set any combination of the horizontalAlignment and verticalAlignment attributes. For example, if you want a control to be centered both horizontally and vertically, set horizontalAlignment to “center” and verticalAlignment to “center”.
See Also
Previous | Next |