LayoutManager
public function addLayoutComponent(comp:Component, constraints:Object):VoidDescription copied from LayoutManager
Adds the specified component to the layout, using the specified constraint object.
public function removeLayoutComponent(comp:Component):Voidpublic function preferredLayoutSize(target:Container):DimensionDescription copied from LayoutManager
Calculates the preferred size dimensions for the specified container, given the components it contains.
public function minimumLayoutSize(target:Container):DimensionDescription copied from LayoutManager
Calculates the minimum size dimensions for the specified container, given the components it contains.
public function maximumLayoutSize(target:Container):DimensionDescription copied from LayoutManager
Calculates the maximum size dimensions for the specified container, given the components it contains.
public function layoutContainer(target:Container):Voidpublic function getLayoutAlignmentX(target:Container):NumberDescription copied from LayoutManager
Returns the alignment along the x axis. This specifies how the component would like to be aligned relative to other components. The value should be a number between 0 and 1 where 0 represents alignment along the origin, 1 is aligned the furthest away from the origin, 0.5 is centered, etc.
public function getLayoutAlignmentY(target:Container):NumberDescription copied from LayoutManager
Returns the alignment along the y axis. This specifies how the component would like to be aligned relative to other components. The value should be a number between 0 and 1 where 0 represents alignment along the origin, 1 is aligned the furthest away from the origin, 0.5 is centered, etc.
public function invalidateLayout(target:Container):VoidDescription copied from LayoutManager
Invalidates the layout, indicating that if the layout manager has cached information it should be discarded.