home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
404 Jogos
/
CLJG.iso
/
Puzzle
/
filler.swf
/
scripts
/
mx
/
core
/
EdgeMetrics.as
< prev
next >
Wrap
Text File
|
2008-09-02
|
820b
|
36 lines
package mx.core
{
use namespace mx_internal;
public class EdgeMetrics
{
mx_internal static const VERSION:String = "2.0.1.0";
public static var EMPTY:EdgeMetrics = new EdgeMetrics(0,0,0,0);
public var bottom:Number;
public var top:Number;
public var right:Number;
public var left:Number;
public function EdgeMetrics(param1:Number = 0, param2:Number = 0, param3:Number = 0, param4:Number = 0)
{
super();
this.left = param1;
this.top = param2;
this.right = param3;
this.bottom = param4;
}
public function clone() : EdgeMetrics
{
return new EdgeMetrics(left,top,right,bottom);
}
}
}