Package | feathers.layout |
Interface | public interface ILayoutDisplayObject extends IFeathersDisplayObject, IFeathersEventDispatcher |
Implementors | FeathersControl |
Product Version : | Feathers 1.1.0 |
Property | Defined By | ||
---|---|---|---|
alpha : Number
The opacity of the display object. | IFeathersDisplayObject | ||
base : DisplayObject [read-only]
The top-most object of the display tree that the display object is
connected to. | IFeathersDisplayObject | ||
blendMode : String
The blend mode used when rendering the display object. | IFeathersDisplayObject | ||
bounds : Rectangle [read-only]
The bounds of the display object in its local coordinate space. | IFeathersDisplayObject | ||
filter : FragmentFilter
The filter used when rendering the display object. | IFeathersDisplayObject | ||
height : Number
The height of the display object in the parent's coordinate space. | IFeathersDisplayObject | ||
includeInLayout : Boolean
Determines if the ILayout should use this object or ignore it. | ILayoutDisplayObject | ||
layoutData : ILayoutData
Extra parameters associated with this display object that will be
used by the layout algorithm. | ILayoutDisplayObject | ||
mask : DisplayObject
The display object's mask. | IFeathersDisplayObject | ||
name : String
The name of the display object. | IFeathersDisplayObject | ||
parent : DisplayObjectContainer [read-only]
The display object's parent, or null if it doesn't have
a parent. | IFeathersDisplayObject | ||
pivotX : Number
The x coordinate of the display object's origin in its own coordinate
space. | IFeathersDisplayObject | ||
pivotY : Number
The y coordinate of the display object's origin in its own coordinate
space. | IFeathersDisplayObject | ||
root : DisplayObject [read-only]
| IFeathersDisplayObject | ||
rotation : Number
The rotation of the display object, in radians. | IFeathersDisplayObject | ||
scaleX : Number
This horizontal scale factor. | IFeathersDisplayObject | ||
scaleY : Number
The vertical scale factor. | IFeathersDisplayObject | ||
skewX : Number
The horizontal skew, in radians. | IFeathersDisplayObject | ||
skewY : Number
The vertical skew, in radians. | IFeathersDisplayObject | ||
stage : Stage [read-only]
The stage that the display object is connected to, or null
if it is not connected to a stage. | IFeathersDisplayObject | ||
touchable : Boolean
Determines if the display object may be touched. | IFeathersDisplayObject | ||
transformationMatrix : Matrix [read-only]
The transformation matrix of the display object, relative to its
parent. | IFeathersDisplayObject | ||
useHandCursor : Boolean
Determines if the mouse cursor should turn into a hand when the mouse
is over the display object. | IFeathersDisplayObject | ||
visible : Boolean
Determines the visibility of the display object. | IFeathersDisplayObject | ||
width : Number
The width of the display object in the parent's coordinate space. | IFeathersDisplayObject | ||
x : Number
The x, or horizontal, position of the display object in the parent's
coordinate space. | IFeathersDisplayObject | ||
y : Number
The y, or vertical, position of the display object in the parent's
coordinate space. | IFeathersDisplayObject |
Event | Summary | Defined By | ||
---|---|---|---|---|
Dispatched when a property of the display object's layout data changes. | ILayoutDisplayObject |
includeInLayout | property |
includeInLayout:Boolean
Determines if the ILayout should use this object or ignore it.
In the following example, the display object is excluded from the layout:
object.includeInLayout = false;
public function get includeInLayout():Boolean
public function set includeInLayout(value:Boolean):void
layoutData | property |
layoutData:ILayoutData
Extra parameters associated with this display object that will be used by the layout algorithm.
public function get layoutData():ILayoutData
public function set layoutData(value:ILayoutData):void
layoutDataChange | Event |
starling.events.Event
feathers.events.FeathersEventType.LAYOUT_DATA_CHANGE
Dispatched when a property of the display object's layout data changes.
TheFeathersEventType.LAYOUT_DATA_CHANGE
event type is
used by Feathers controls when their layout data has changed.