Name

stableborderlayout

Synopsis

LZX: stableborderlayout
JavaScript: stableborderlayout
Type: Class
Access: public
Topic: Components.Layouts
Declared in: lps/components/utils/layouts/stableborderlayout.lzx

Superclass Chain

node (LzNode) » layout (LzLayout) » stableborderlayout

Known Subclasses

Details

Properties (1)

axis
<attribute name="axis" type="string" />
public var axis : String;
The axis in which this layout operates. One of 'x' or 'y'.

Methods (1)

update()
<method name="update" args="n" />
public function update(n : Number);
This method is usually only called when the size of the parent changes. This means that stableborderlayout is not really designed for use in situations where the size of the views controlled by the layout changes after init time. However, this method may be called directly to force the layout to update.

LZX Synopsis

<class name="stableborderlayout" extends=" LzLayout ">
  <attribute name=" axis " type="string" />
  <method name=" update " args="n" />
</class>

JavaScript Synopsis

public stableborderlayout extends  LzLayout  {
  public var axis  : String;
  prototype public function update (n : Number);
}