Package | mx.containers.utilityClasses |
Class | public class ConstraintColumn |
Inheritance | ConstraintColumn EventDispatcher Object |
Implements | IMXMLObject |
Language Version: | ActionScript 3.0 |
Product Version: | Flex 3 |
Runtime Versions: | Flash Player 9, AIR 1.1 |
Property | Defined By | ||
---|---|---|---|
constructor : Object
A reference to the class object or constructor function for a given object instance. | Object | ||
explicitWidth : Number
Number that specifies the explicit width of the ConstraintColumn instance,
in pixels, in the ConstraintColumn instance's coordinates. | ConstraintColumn | ||
id : String
ID of the ConstraintColumn instance. | ConstraintColumn | ||
maxWidth : Number
Number that specifies the maximum width of the ConstraintColumn
instance, in pixels, in the ConstraintColumn instance's coordinates. | ConstraintColumn | ||
minWidth : Number
Number that specifies the minimum width of the ConstraintColumn instance,
in pixels, in the ConstraintColumn instance's coordinates. | ConstraintColumn | ||
percentWidth : Number
Number that specifies the width of a component as a percentage of its
parent container's size. | ConstraintColumn | ||
width : Number
Number that specifies the width of the ConstraintColumn instance, in pixels,
in the parent container's coordinates. | ConstraintColumn |
Method | Defined By | ||
---|---|---|---|
Constructor. | ConstraintColumn | ||
addEventListener(type:String, listener:Function, useCapture:Boolean = false, priority:int = 0, useWeakReference:Boolean = false):void
Registers an event listener object with an EventDispatcher object so that the listener
receives notification of an event. | EventDispatcher | ||
Dispatches an event into the event flow. | EventDispatcher | ||
Checks whether the EventDispatcher object has any listeners registered for a specific type
of event. | EventDispatcher | ||
Indicates whether an object has a specified property defined. | Object | ||
Called automatically by the MXML compiler when the ConstraintColumn
instance is created using an MXML tag. | ConstraintColumn | ||
Indicates whether an instance of the Object class is in the prototype chain of the object specified
as the parameter. | Object | ||
Indicates whether the specified property exists and is enumerable. | Object | ||
Removes a listener from the EventDispatcher object. | EventDispatcher | ||
Sizes the constraint column. | ConstraintColumn | ||
Sets the availability of a dynamic property for loop operations. | Object | ||
Returns the string representation of this object, formatted according to locale-specific conventions. | Object | ||
Returns the string representation of the specified object. | Object | ||
Returns the primitive value of the specified object. | Object | ||
Checks whether an event listener is registered with this EventDispatcher object or any of
its ancestors for the specified event type. | EventDispatcher |
explicitWidth | property |
explicitWidth:Number
Language Version: | ActionScript 3.0 |
Product Version: | Flex 3 |
Runtime Versions: | Flash Player 9, AIR 1.1 |
Number that specifies the explicit width of the ConstraintColumn instance, in pixels, in the ConstraintColumn instance's coordinates.
This property can be used as the source for data binding. When this property is modified, it dispatches the explicitWidthChanged
event.
Implementation
public function get explicitWidth():Number
public function set explicitWidth(value:Number):void
id | property |
id:String
Language Version: | ActionScript 3.0 |
Product Version: | Flex 3 |
Runtime Versions: | Flash Player 9, AIR 1.1 |
ID of the ConstraintColumn instance. This value becomes the instance name of the ConstraintColumn instance and should not contain white space or special characters.
Implementation
public function get id():String
public function set id(value:String):void
maxWidth | property |
maxWidth:Number
Language Version: | ActionScript 3.0 |
Product Version: | Flex 3 |
Runtime Versions: | Flash Player 9, AIR 1.1 |
Number that specifies the maximum width of the ConstraintColumn instance, in pixels, in the ConstraintColumn instance's coordinates.
This property can be used as the source for data binding. When this property is modified, it dispatches the maxWidthChanged
event.
Implementation
public function get maxWidth():Number
public function set maxWidth(value:Number):void
minWidth | property |
minWidth:Number
Language Version: | ActionScript 3.0 |
Product Version: | Flex 3 |
Runtime Versions: | Flash Player 9, AIR 1.1 |
Number that specifies the minimum width of the ConstraintColumn instance, in pixels, in the ConstraintColumn instance's coordinates.
This property can be used as the source for data binding. When this property is modified, it dispatches the minWidthChanged
event.
Implementation
public function get minWidth():Number
public function set minWidth(value:Number):void
percentWidth | property |
percentWidth:Number
Language Version: | ActionScript 3.0 |
Product Version: | Flex 3 |
Runtime Versions: | Flash Player 9, AIR 1.1 |
Number that specifies the width of a component as a percentage of its
parent container's size. Allowed values are 0-100. The default value is NaN.
Setting the width
property resets this property to NaN.
This property can be used as the source for data binding. When this property is modified, it dispatches the percentWidthChanged
event.
Implementation
public function get percentWidth():Number
public function set percentWidth(value:Number):void
width | property |
width:Number
Language Version: | ActionScript 3.0 |
Product Version: | Flex 3 |
Runtime Versions: | Flash Player 9, AIR 1.1 |
Number that specifies the width of the ConstraintColumn instance, in pixels, in the parent container's coordinates.
This property can be used as the source for data binding. When this property is modified, it dispatches the widthChanged
event.
Implementation
public function get width():Number
public function set width(value:Number):void
ConstraintColumn | () | Constructor |
public function ConstraintColumn()
Language Version: | ActionScript 3.0 |
Product Version: | Flex 3 |
Runtime Versions: | Flash Player 9, AIR 1.1 |
Constructor.
initialized | () | method |
public function initialized(document:Object, id:String):void
Language Version: | ActionScript 3.0 |
Product Version: | Flex 3 |
Runtime Versions: | Flash Player 9, AIR 1.1 |
Called automatically by the MXML compiler when the ConstraintColumn
instance is created using an MXML tag.
If you create the ConstraintColumn instance through ActionScript, you
must call this method passing in the MXML document and
null
for the id
.
Parameters
document:Object — The MXML document containing this ConstraintColumn.
| |
id:String — Ignored.
|
setActualWidth | () | method |
Thu Dec 6 2018, 01:12 PM -08:00