Name

constantlayout

Synopsis

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

Superclass Chain

node (LzNode) » layout (LzLayout) » constantlayout

Known Subclasses

Details

Properties (2)

axis
<attribute name="axis" type="string" value="y" />
public var axis : String;
The axis in which this layout operates either 'x' or 'y'.
value
<attribute name="value" />
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 (1)

update()
<method name="update" />
public function update();
This method is called automatically by the layout. However it can be called directly to force the layout to update

LZX Synopsis

<class name="constantlayout" extends=" LzLayout ">
  <attribute name=" axis " type="string" value="y" />
  <attribute name=" value " />
  <method name=" update " />
</class>

JavaScript Synopsis

public constantlayout extends  LzLayout  {
  public var axis  : String;
  public var value ;
  prototype public function update ();
}