The axis in which this layout operates either 'x' or 'y'.
value
<attribute name="value" value="0" />
public var value;
The constant value that is applied to the attribute
( defined in 'axis' as 'x' or 'y' ) of each subview in the layout.
Methods (2)
addSubview()
<method name="addSubview" args="newsub" />
public function addSubview(newsub);
this method is called by the layout class as each new subview is added
to a layout. It is extended here to define which events on a subview
will activate the update method of this particular layout
update()
<method name="update" />
public function update();
this method is called by the layout class everytime an event (that
has been registered with the updatedelegate) is sent by a subview
or the layout's parent view.