Paquete | mx.effects.effectClasses |
Clase | public class PropertyChanges |
Herencia | PropertyChanges 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 |
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.
Elementos de API relacionados
Propiedad | Definido por | ||
---|---|---|---|
constructor : Object
Una referencia a la clase de objeto o función constructora para una instancia de objeto determinada. | 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 |
Método | Definido por | ||
---|---|---|---|
PropertyChanges(target:Object)
The PropertyChanges constructor. | PropertyChanges | ||
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 |
end | propiedad |
public var end: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 |
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 | propiedad |
public var start: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 |
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 | propiedad |
public var stripUnchangedValues:Boolean = true
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 |
This flag controls whether values that are the same in the start and end states are stripped from those objects.
El valor predeterminado es true.
target | propiedad |
public var target: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 |
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 | () | Información sobre |
Tue Jun 12 2018, 02:12 PM Z