region - Region
Specifies the position of a pane in a container.
Category
formatSyntax
region="top|bottom|leading|trailing|left|right|center"
Usage
In Design mode, click All Properties and look for region under format.Examples
This example shows five Border Pane controls inside a Border Container control.<xe:djBorderContainer id="djBorderContainer1" style="width:400px; height:200px;">
<xe:djBorderPane id="djBorderPane1" region="top">top</xe:djBorderPane>
<xe:djBorderPane id="djBorderPane2" region="center">center</xe:djBorderPane>
<xe:djBorderPane id="djBorderPane3" region="bottom">bottom</xe:djBorderPane>
<xe:djBorderPane id="djBorderPane4" region="left">left</xe:djBorderPane>
<xe:djBorderPane id="djBorderPane5" region="right">right</xe:djBorderPane>
</xe:djBorderContainer>