Paquete | mx.core |
Clase | public class EdgeMetrics |
Herencia | EdgeMetrics Object |
Versión del lenguaje: | ActionScript 3.0 |
Versión de producto: | Flex 3 |
Versiones de motor de ejecución: | Flash Player 9, AIR 1.1 |
The following Flex properties have values that are EdgeMetrics objects:
- The
borderMetrics
property of the mx.core.Container and mx.skins.Border classes includes only the border in the calculations of the property values of the EdgeMetrics object. - The
viewMetrics
property of the mx.core.Container class, and of subclasses of the Container class, includes possible scrollbars and non-content elements -- such as a Panel container's header area and the area for a ControlBar component -- in the calculations of the property values of the EdgeMetrics object. - The
viewMetricsAndPadding
property of the mx.core.Container class includes the items listed for theviewMetrics
property, plus the any areas defined by the margins of the container in the calculations of the property values of the EdgeMetrics object.
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.
Elementos de API relacionados
Propiedad | Definido por | ||
---|---|---|---|
bottom : Number
The height, in pixels, of the bottom edge region. | EdgeMetrics | ||
constructor : Object
Una referencia a la clase de objeto o función constructora para una instancia de objeto determinada. | Object | ||
left : Number
The width, in pixels, of the left edge region. | EdgeMetrics | ||
right : Number
The width, in pixels, of the right edge region. | EdgeMetrics | ||
top : Number
The height, in pixels, of the top edge region. | EdgeMetrics |
Método | Definido por | ||
---|---|---|---|
Constructor. | EdgeMetrics | ||
Returns a copy of this EdgeMetrics object. | EdgeMetrics | ||
Indica si un objeto tiene definida una propiedad especificada. | Object | ||
Indica si hay una instancia de la clase Object en la cadena de prototipo del objeto especificado como parámetro. | Object | ||
Indica si existe la propiedad especificada y si es enumerable. | Object | ||
Establece la disponibilidad de una propiedad dinámica para operaciones de bucle. | Object | ||
Devuelve la representación de cadena de este objeto, con formato según las convenciones específicas de configuración regional. | Object | ||
Devuelve la representación de cadena del objeto especificado. | Object | ||
Devuelve el valor simple del objeto especificado. | Object |
Constante | Definido por | ||
---|---|---|---|
EMPTY : EdgeMetrics [estática]
An EdgeMetrics object with a value of zero for its
left, top, right,
and bottom properties. | EdgeMetrics |
bottom | propiedad |
public var bottom:Number
Versión del lenguaje: | ActionScript 3.0 |
Versión de producto: | Flex 3 |
Versiones de motor de ejecución: | Flash Player 9, AIR 1.1 |
The height, in pixels, of the bottom edge region.
left | propiedad |
public var left:Number
Versión del lenguaje: | ActionScript 3.0 |
Versión de producto: | Flex 3 |
Versiones de motor de ejecución: | Flash Player 9, AIR 1.1 |
The width, in pixels, of the left edge region.
right | propiedad |
public var right:Number
Versión del lenguaje: | ActionScript 3.0 |
Versión de producto: | Flex 3 |
Versiones de motor de ejecución: | Flash Player 9, AIR 1.1 |
The width, in pixels, of the right edge region.
top | propiedad |
public var top:Number
Versión del lenguaje: | ActionScript 3.0 |
Versión de producto: | Flex 3 |
Versiones de motor de ejecución: | Flash Player 9, AIR 1.1 |
The height, in pixels, of the top edge region.
EdgeMetrics | () | Información sobre |
public function EdgeMetrics(left:Number = 0, top:Number = 0, right:Number = 0, bottom:Number = 0)
Versión del lenguaje: | ActionScript 3.0 |
Versión de producto: | Flex 3 |
Versiones de motor de ejecución: | Flash Player 9, AIR 1.1 |
Constructor.
Parámetrosleft:Number (default = 0 ) — The width, in pixels, of the left edge region.
| |
top:Number (default = 0 ) — The height, in pixels, of the top edge region.
| |
right:Number (default = 0 ) — The width, in pixels, of the right edge region.
| |
bottom:Number (default = 0 ) — The height, in pixels, of the bottom edge region.
|
clone | () | método |
public function clone():EdgeMetrics
Versión del lenguaje: | ActionScript 3.0 |
Versión de producto: | Flex 3 |
Versiones de motor de ejecución: | Flash Player 9, AIR 1.1 |
Returns a copy of this EdgeMetrics object.
Valor devueltoEdgeMetrics — A copy of this EdgeMetrics object.
|
EMPTY | Constante |
public static const EMPTY:EdgeMetrics
Versión del lenguaje: | ActionScript 3.0 |
Versión de producto: | Flex 3 |
Versiones de motor de ejecución: | Flash Player 9, AIR 1.1 |
An EdgeMetrics object with a value of zero for its
left
, top
, right
,
and bottom
properties.
Tue Jun 12 2018, 02:12 PM Z