package components.printpreview { public class PrintElement { public var x:Number; public var y:Number; public var width:Number; public var height:Number; public var name:String; public function PrintElement(x:Number, y:Number, width:Number, height:Number, name:String) { this.x = x; this.y = y; this.width = width; this.height = height; this.name = name; } } }