Pakket | mx.core |
Klasse | public class EdgeMetrics |
Overerving | EdgeMetrics Object |
Taalversie: | ActionScript 3.0 |
Productversie: | Flex 3 |
Runtimeversies: | 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.
Verwante API-elementen
Eigenschap | Gedefinieerd door | ||
---|---|---|---|
bottom : Number
The height, in pixels, of the bottom edge region. | EdgeMetrics | ||
constructor : Object
Verwijzing naar het klasseobject of de constructorfunctie van een bepaalde objectinstantie. | 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 |
Methode | Gedefinieerd door | ||
---|---|---|---|
Constructor. | EdgeMetrics | ||
Returns a copy of this EdgeMetrics object. | EdgeMetrics | ||
Geeft aan of voor een object een opgegeven eigenschap is gedefinieerd. | Object | ||
Geeft aan of een instantie van de klasse Object zich in de prototypeketen van het object bevindt dat als parameter is opgegeven. | Object | ||
Geeft aan of de opgegeven eigenschap bestaat en kan worden opgesomd. | Object | ||
Stelt de beschikbaarheid van een dynamische eigenschap voor lusbewerkingen in. | Object | ||
Geeft de tekenreeksweergave van dit object weer, geformatteerd volgens de locatiespecifieke conventies. | Object | ||
Retourneert een tekenreeksrepresentatie van het opgegeven object. | Object | ||
Retourneert de primitieve waarde van het opgegeven object. | Object |
Constante | Gedefinieerd door | ||
---|---|---|---|
EMPTY : EdgeMetrics [statisch]
An EdgeMetrics object with a value of zero for its
left, top, right,
and bottom properties. | EdgeMetrics |
bottom | eigenschap |
public var bottom:Number
Taalversie: | ActionScript 3.0 |
Productversie: | Flex 3 |
Runtimeversies: | Flash Player 9, AIR 1.1 |
The height, in pixels, of the bottom edge region.
left | eigenschap |
public var left:Number
Taalversie: | ActionScript 3.0 |
Productversie: | Flex 3 |
Runtimeversies: | Flash Player 9, AIR 1.1 |
The width, in pixels, of the left edge region.
right | eigenschap |
public var right:Number
Taalversie: | ActionScript 3.0 |
Productversie: | Flex 3 |
Runtimeversies: | Flash Player 9, AIR 1.1 |
The width, in pixels, of the right edge region.
top | eigenschap |
public var top:Number
Taalversie: | ActionScript 3.0 |
Productversie: | Flex 3 |
Runtimeversies: | Flash Player 9, AIR 1.1 |
The height, in pixels, of the top edge region.
EdgeMetrics | () | Constructor |
public function EdgeMetrics(left:Number = 0, top:Number = 0, right:Number = 0, bottom:Number = 0)
Taalversie: | ActionScript 3.0 |
Productversie: | Flex 3 |
Runtimeversies: | Flash Player 9, AIR 1.1 |
Constructor.
Parametersleft: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 | () | methode |
public function clone():EdgeMetrics
Taalversie: | ActionScript 3.0 |
Productversie: | Flex 3 |
Runtimeversies: | Flash Player 9, AIR 1.1 |
Returns a copy of this EdgeMetrics object.
Geretourneerde waardeEdgeMetrics — A copy of this EdgeMetrics object.
|
EMPTY | Constante |
public static const EMPTY:EdgeMetrics
Taalversie: | ActionScript 3.0 |
Productversie: | Flex 3 |
Runtimeversies: | Flash Player 9, AIR 1.1 |
An EdgeMetrics object with a value of zero for its
left
, top
, right
,
and bottom
properties.
Wed Jun 13 2018, 11:42 AM Z