| Package | com.addicted2flash.layout.util |
| Class | public class Size |
| Property | Defined by | ||
|---|---|---|---|
| height : Number
Returns the height.
| Size | ||
| width : Number
Returns the width.
| Size | ||
| Method | Defined by | ||
|---|---|---|---|
|
Size(width:Number = 0, height:Number = 0)
Creates a new
Size. | Size | ||
|
Returns a clone of the
Size. | Size | ||
|
toString():String
Returns the string representation of the
Size. | Size | ||
| height | property |
height:Number [read-write]Returns the height.
Implementation public function get height():Number
public function set height(value:Number):void
| width | property |
width:Number [read-write]Returns the width.
Implementation public function get width():Number
public function set width(value:Number):void
| Size | () | constructor |
public function Size(width:Number = 0, height:Number = 0)
Creates a new Size.
width:Number (default = 0) — width
|
|
height:Number (default = 0) — height
|
— if width or height smaller 0
|
| clone | () | method |
| toString | () | method |
public function toString():String
Returns the string representation of the Size.
String — the string representation of the Size
|