Override Horizontal Box Layout
Properties
See also: Horizontal Box Layout, Overriding Layout Properties
This dialog allows Horizontal Box Layout properties set on the parent container control to be overridden.

Qualifier: layoutCellProperties.HORIZONTAL_BOX (for FPL), layoutCell for API-based language
| Property | Description | Name1 | Type1 | Get1 | Set1 | Get/Set Values1 | 
| Horizontal Alignment | See Cell Horizontal Alignment in Horizontal Box Layout | hAlign | Character | Yes | Yes | Click here
  for values. | 
| Vertical Alignment | See Cell Vertical Alignment in Horizontal 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 Horizontal 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 via API based language:
controls.PANEL1.layoutCell.vAlign
= "Top";
controls.PANEL1.layoutCell.layoutClass
= "myLayoutClass";
controls.PANEL1.layoutCell.layoutStyle
= "padding-top:5px;padding-bottom:5px;";
Examples of setting properties via FPL:
set
PANEL1.layoutCellProperties.HORIZONTAL_BOX.vAlign = 'Top';
set
PANEL1.layoutCellProperties.HORIZONTAL_BOX.layoutClass = 'myLayoutClass';
set
PANEL1.layoutCellProperties.HORIZONTAL_BOX.layoutStyle =
'padding-top:5px;padding-bottom:5px;';