View source
interface ILayoutObject
package feathers.layout
extends IEventDispatcher
extended by FeathersControl
An object that may contain extra data for use with the parent container's layout.
Events:
feathers.events.FeathersEvent.LAYOUT_DATA_CHANGE | Dispatched when
|
---|
Available since
1.0.0
.See also:
Variables
includeInLayout:Bool
Determines if the ILayout
of the parent container should measure and
position this object or ignore it.
When the value of the includeInLayout
property changes, the object
will dispatch an event of type FeathersEvent.LAYOUT_DATA_CHANGE
.
In the following example, the object is excluded from the layout:
object.includeInLayout = false;
Available since
1.0.0
.See also:
layoutData:ILayoutData
Optional, extra data used by some ILayout
implementations.
When the value of the includeInLayout
property changes, the object
will dispatch an event of type FeathersEvent.LAYOUT_DATA_CHANGE
.
Available since
1.0.0
.See also: