Override Vertical Box Layout
Properties
See also: Vertical Box Layout, Overriding Layout Properties
This dialog allows Vertical Box Layout properties set on the parent container control to be overridden.
Qualifier: layoutCellProperties.VERTICAL_BOX (for FPL), layoutCell for API-based language
Property |
Description |
Name1 |
Type1 |
Get1 |
Set1 |
Get/Set Values1 |
Horizontal Alignment |
See Cell Horizontal Alignment in Vertical Box Layout |
hAlign |
Character |
Yes |
Yes |
Click here for values. |
Vertical Alignment |
See Cell Vertical Alignment in Vertical Box Layout |
vAlign |
Character |
Yes |
Yes |
Click here
for values. Value Fill is not supported. |
Advanced Properties |
Allows specification of CSS classes and inline style for the table cell (<td>) tag containing this control. See Advanced Properties in Vertical Box Layout. |
layoutClass layoutStyle |
Character |
Yes |
Yes |
As per HTML class parameter As per HTML style parameter |
1 See accessing control properties from scripts
Examples of setting properties using Javascript:
controls.PANEL1.layoutCell.hAlign
= "Center";
controls.PANEL1.layoutCell.layoutClass
= "myLayoutClass";
controls.PANEL1.layoutCell.layoutStyle
= "padding-top:5px;padding-bottom:5px;";
Examples of setting properties using FPL:
set
PANEL1.layoutCellProperties.VERTICAL_BOX.hAlign = 'Center';
set
PANEL1.layoutCellProperties.VERTICAL_BOX.layoutClass = 'myLayoutClass';
set
PANEL1.layoutCellProperties.VERTICAL_BOX.layoutStyle =
'padding-top:5px;padding-bottom:5px;';