//////////////////////////////////////////////////////////////////////////////// // // Licensed to the Apache Software Foundation (ASF) under one or more // contributor license agreements. See the NOTICE file distributed with // this work for additional information regarding copyright ownership. // The ASF licenses this file to You under the Apache License, Version 2.0 // (the "License"); you may not use this file except in compliance with // the License. You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. // //////////////////////////////////////////////////////////////////////////////// package mx.core { /** * The EdgeMetrics class specifies the thickness, in pixels, * of the four edge regions around a visual component. * *

The following Flex properties have values that are EdgeMetrics * objects:

* * * *

These three properites all return a reference to the same * EdgeMetrics object that the Container is using for its measurement * and layout; they do not return a copy of this object. * If you need a copy, call the clone() method.

* * @see mx.core.Container * @see mx.skins.Border * @see mx.containers.Panel * * @langversion 3.0 * @playerversion Flash 9 * @playerversion AIR 1.1 * @productversion Flex 3 */ public class EdgeMetrics { include "../core/Version.as"; //-------------------------------------------------------------------------- // // Class constants // //-------------------------------------------------------------------------- /** * An EdgeMetrics object with a value of zero for its * left, top, right, * and bottom properties. * * @langversion 3.0 * @playerversion Flash 9 * @playerversion AIR 1.1 * @productversion Flex 3 */ public static const EMPTY:EdgeMetrics = new EdgeMetrics(0, 0, 0, 0); //-------------------------------------------------------------------------- // // Constructor // //-------------------------------------------------------------------------- /** * Constructor. * * @param left The width, in pixels, of the left edge region. * * @param top The height, in pixels, of the top edge region. * * @param right The width, in pixels, of the right edge region. * * @param bottom The height, in pixels, of the bottom edge region. * * @langversion 3.0 * @playerversion Flash 9 * @playerversion AIR 1.1 * @productversion Flex 3 */ public function EdgeMetrics(left:Number = 0, top:Number = 0, right:Number = 0, bottom:Number = 0) { super(); this.left = left; this.top = top; this.right = right; this.bottom = bottom; } //-------------------------------------------------------------------------- // // Properties // //-------------------------------------------------------------------------- //---------------------------------- // bottom //---------------------------------- /** * The height, in pixels, of the bottom edge region. * * @langversion 3.0 * @playerversion Flash 9 * @playerversion AIR 1.1 * @productversion Flex 3 */ public var bottom:Number; //---------------------------------- // left //---------------------------------- /** * The width, in pixels, of the left edge region. * * @langversion 3.0 * @playerversion Flash 9 * @playerversion AIR 1.1 * @productversion Flex 3 */ public var left:Number; //---------------------------------- // right //---------------------------------- /** * The width, in pixels, of the right edge region. * * @langversion 3.0 * @playerversion Flash 9 * @playerversion AIR 1.1 * @productversion Flex 3 */ public var right:Number; //---------------------------------- // top //---------------------------------- /** * The height, in pixels, of the top edge region. * * @langversion 3.0 * @playerversion Flash 9 * @playerversion AIR 1.1 * @productversion Flex 3 */ public var top:Number; //-------------------------------------------------------------------------- // // Methods // //-------------------------------------------------------------------------- /** * Returns a copy of this EdgeMetrics object. * * @return A copy of this EdgeMetrics object. * * @langversion 3.0 * @playerversion Flash 9 * @playerversion AIR 1.1 * @productversion Flex 3 */ public function clone():EdgeMetrics { return new EdgeMetrics(left, top, right, bottom); } } }