Pakket | mx.effects.effectClasses |
Klasse | public class PropertyChanges |
Overerving | PropertyChanges Object |
Taalversie: | ActionScript 3.0 |
Productversie: | Flex 3 |
Runtimeversies: | Flash Player 9, AIR 1.1 |
start
and end
fields
of the PropertyChanges class contain the same set of properties,
but with different values.
Target properties that have the same start and end values
are not included in the start
and end
fields.
Verwante API-elementen
Eigenschap | Gedefinieerd door | ||
---|---|---|---|
constructor : Object
Verwijzing naar het klasseobject of de constructorfunctie van een bepaalde objectinstantie. | Object | ||
end : Object
An Object containing the ending properties of the target
component modified by the change in view state. | PropertyChanges | ||
start : Object
An Object containing the starting properties of the target
component modified by the change in view state. | PropertyChanges | ||
stripUnchangedValues : Boolean = true
This flag controls whether values that are the same in the
start and end states are stripped from those objects. | PropertyChanges | ||
target : Object
A target component of a transition. | PropertyChanges |
Methode | Gedefinieerd door | ||
---|---|---|---|
PropertyChanges(target:Object)
The PropertyChanges constructor. | PropertyChanges | ||
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 |
end | eigenschap |
public var end:Object
Taalversie: | ActionScript 3.0 |
Productversie: | Flex 3 |
Runtimeversies: | Flash Player 9, AIR 1.1 |
An Object containing the ending properties of the target
component modified by the change in view state.
For example, for a target
component that is both
moved and resized by a change to the view state, end
contains the ending position and size of the component,
as the following example shows:
{ x: 100, y: 100, width: 200, height: 200 }
start | eigenschap |
public var start:Object
Taalversie: | ActionScript 3.0 |
Productversie: | Flex 3 |
Runtimeversies: | Flash Player 9, AIR 1.1 |
An Object containing the starting properties of the target
component modified by the change in view state.
For example, for a target
component that is both
moved and resized by a change to the view state, start
contains the starting position and size of the component,
as the following example shows:
{ x: 0, y: 0, width: 100, height: 100}
stripUnchangedValues | eigenschap |
public var stripUnchangedValues:Boolean = true
Taalversie: | ActionScript 3.0 |
Productversie: | Flex 3 |
Runtimeversies: | Flash Player 9, AIR 1.1 |
This flag controls whether values that are the same in the start and end states are stripped from those objects.
De standaardwaarde is true.
target | eigenschap |
public var target:Object
Taalversie: | ActionScript 3.0 |
Productversie: | Flex 3 |
Runtimeversies: | Flash Player 9, AIR 1.1 |
A target component of a transition.
The start
and end
fields
of the PropertyChanges object define how the target component
is modified by the change to the view state.
PropertyChanges | () | Constructor |
Wed Jun 13 2018, 11:42 AM Z