| Package | feathers.core |
| Interface | public interface IMeasureDisplayObject extends IFeathersDisplayObject, IFeathersEventDispatcher |
| Implementors | ImageSkin |
| Product Version : | Feathers 3.0.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 | |
| explicitHeight : Number [read-only]
The height value explicitly set by passing a value to the
height setter or by calling the setSize()
function. | IMeasureDisplayObject | ||
| explicitMaxHeight : Number [read-only]
The maximum height value explicitly set by passing a value to the
maxHeight setter. | IMeasureDisplayObject | ||
| explicitMaxWidth : Number [read-only]
The maximum width value explicitly set by passing a value to the
maxWidth setter. | IMeasureDisplayObject | ||
| explicitMinHeight : Number [read-only]
The minimum height value explicitly set by passing a value to the
minHeight setter. | IMeasureDisplayObject | ||
| explicitMinWidth : Number [read-only]
The minimum width value explicitly set by passing a value to the
minWidth setter. | IMeasureDisplayObject | ||
| explicitWidth : Number [read-only]
The width value explicitly set by passing a value to the
width setter or to the setSize() method. | IMeasureDisplayObject | ||
![]() | 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 | |
![]() | mask : DisplayObject
The display object's mask. | IFeathersDisplayObject | |
| maxHeight : Number
The maximum recommended height to be used for self-measurement and,
optionally, by any code that is resizing this component. | IMeasureDisplayObject | ||
| maxWidth : Number
The maximum recommended width to be used for self-measurement and,
optionally, by any code that is resizing this component. | IMeasureDisplayObject | ||
| minHeight : Number
The minimum recommended height to be used for self-measurement and,
optionally, by any code that is resizing this component. | IMeasureDisplayObject | ||
| minWidth : Number
The minimum recommended width to be used for self-measurement and,
optionally, by any code that is resizing this component. | IMeasureDisplayObject | ||
![]() | 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 | |
| explicitHeight | property |
explicitHeight:Number [read-only]
The height value explicitly set by passing a value to the
height setter or by calling the setSize()
function.
public function get explicitHeight():Number| explicitMaxHeight | property |
explicitMaxHeight:Number [read-only]
The maximum height value explicitly set by passing a value to the
maxHeight setter.
If no value has been passed to the maxHeight setter,
this property returns NaN.
public function get explicitMaxHeight():Number| explicitMaxWidth | property |
explicitMaxWidth:Number [read-only]
The maximum width value explicitly set by passing a value to the
maxWidth setter.
If no value has been passed to the maxWidth setter,
this property returns NaN.
public function get explicitMaxWidth():Number| explicitMinHeight | property |
explicitMinHeight:Number [read-only]
The minimum height value explicitly set by passing a value to the
minHeight setter.
If no value has been passed to the minHeight setter,
this property returns NaN.
public function get explicitMinHeight():Number| explicitMinWidth | property |
explicitMinWidth:Number [read-only]
The minimum width value explicitly set by passing a value to the
minWidth setter.
If no value has been passed to the minWidth setter,
this property returns NaN.
public function get explicitMinWidth():Number| explicitWidth | property |
explicitWidth:Number [read-only]
The width value explicitly set by passing a value to the
width setter or to the setSize() method.
public function get explicitWidth():Number| maxHeight | property |
maxHeight:Number
The maximum recommended height to be used for self-measurement and,
optionally, by any code that is resizing this component. This value
is not strictly enforced in all cases. An explicit height value that
is larger than maxHeight may be set and will not be
affected by the maximum.
In the following example, the maximum width of the control is set to 120 pixels:
control.maxWidth = 120;
public function get maxHeight():Number public function set maxHeight(value:Number):void| maxWidth | property |
maxWidth:Number
The maximum recommended width to be used for self-measurement and,
optionally, by any code that is resizing this component. This value
is not strictly enforced in all cases. An explicit width value that
is larger than maxWidth may be set and will not be
affected by the maximum.
In the following example, the maximum width of the control is set to 120 pixels:
control.maxWidth = 120;
public function get maxWidth():Number public function set maxWidth(value:Number):void| minHeight | property |
minHeight:Number
The minimum recommended height to be used for self-measurement and,
optionally, by any code that is resizing this component. This value
is not strictly enforced in all cases. An explicit height value that
is smaller than minHeight may be set and will not be
affected by the minimum.
In the following example, the minimum height of the control is set to 120 pixels:
control.minHeight = 120;
public function get minHeight():Number public function set minHeight(value:Number):void| minWidth | property |
minWidth:Number
The minimum recommended width to be used for self-measurement and,
optionally, by any code that is resizing this component. This value
is not strictly enforced in all cases. An explicit width value that
is smaller than minWidth may be set and will not be
affected by the minimum.
In the following example, the minimum width of the control is set to 120 pixels:
control.minWidth = 120;
public function get minWidth():Number public function set minWidth(value:Number):void