Paquete | lc.foundation.events |
Clase | public class PropertyLoadEvent |
Herencia | PropertyLoadEvent Event Object |
Versión del lenguaje: | ActionScript 3.0 |
Versión de producto: | Adobe Digital Enterprise Platform Document Services - Workspace 9 |
Versiones de motor de ejecución: | AIR (unsupported), Flash Player 9, Flash Player 10 |
PropertyLoadEvent
event is dispatched when a property is
loaded. Some properties are not loaded until an explicit load method is called,
such as calling the loadStartpoints()
method from the Category
to load the startpoints for a category.
The PropertyLoadEvent
event is passed to event listeners to indicate
that this property has been successfully loaded when the load operation has
successfully completed.
Elementos de API relacionados
Propiedades públicas
Propiedad | Definido por | ||
---|---|---|---|
bubbles : Boolean [solo lectura]
Indica si un evento es un evento de propagación. | Event | ||
cancelable : Boolean [solo lectura]
Indica si se puede evitar el comportamiento asociado al evento. | Event | ||
constructor : Object
Una referencia a la clase de objeto o función constructora para una instancia de objeto determinada. | Object | ||
currentTarget : Object [solo lectura]
Objeto que procesa de forma activa el objeto de evento con un detector de eventos. | Event | ||
eventPhase : uint [solo lectura]
La fase actual en el flujo del evento. | Event | ||
isPropertyCached : Boolean
The flag indicates whether the property is cached. | PropertyLoadEvent | ||
propertyName : String
The property name of the event. | PropertyLoadEvent | ||
source : Object
The source of the event. | PropertyLoadEvent | ||
target : Object [solo lectura]
El destino del evento. | Event | ||
type : String [solo lectura]
El tipo de evento. | Event |
Métodos públicos
Método | Definido por | ||
---|---|---|---|
PropertyLoadEvent(source:Object, propertyName:String, isPropertyCached:Boolean = false, type:String, bubbles:Boolean = false, cancelable:Boolean = false)
Constructor. | PropertyLoadEvent | ||
[override]
Creates a copy of a PropertyLoadEvent object
and sets the value of each property to match that of the original. | PropertyLoadEvent | ||
Una función de utilidad para implementar el método toString() en las clases Event personalizadas de ActionScript 3.0. | Event | ||
Indica si un objeto tiene definida una propiedad especificada. | Object | ||
Comprueba si se ha llamado a preventDefault() en el evento. | Event | ||
Indica si hay una instancia de la clase Object en la cadena de prototipo del objeto especificado como parámetro. | Object | ||
Cancela el comportamiento predeterminado de un evento si es posible cancelarlo. | Event | ||
Indica si existe la propiedad especificada y si es enumerable. | Object | ||
Establece la disponibilidad de una propiedad dinámica para operaciones de bucle. | Object | ||
Impide el proceso de cualquier detector de eventos en el nodo actual y los nodos siguientes en el flujo del evento. | Event | ||
Impide el proceso de cualquier detector de eventos en nodos siguientes al nodo actual. | Event | ||
Devuelve la representación de cadena de este objeto, con formato según las convenciones específicas de configuración regional. | Object | ||
Devuelve una cadena que contiene todas las propiedades del objeto de evento. | Event | ||
Devuelve el valor simple del objeto especificado. | Object |
Constantes públicas
Constante | Definido por | ||
---|---|---|---|
PROPERTY_LOAD : String = "propertyLoad" [estática]
A special value that specifies that the properties were loaded. | PropertyLoadEvent |
Información sobre propiedades
isPropertyCached | propiedad |
public var isPropertyCached:Boolean
Versión del lenguaje: | ActionScript 3.0 |
Versión de producto: | Adobe Digital Enterprise Platform Document Services - Workspace 9 |
Versiones de motor de ejecución: | AIR (unsupported), Flash Player 9, Flash Player 10 |
The flag indicates whether the property is cached. A value of true
indicates that the property is cached.
propertyName | propiedad |
public var propertyName:String
Versión del lenguaje: | ActionScript 3.0 |
Versión de producto: | Adobe Digital Enterprise Platform Document Services - Workspace 9 |
Versiones de motor de ejecución: | AIR (unsupported), Flash Player 9, Flash Player 10 |
The property name of the event.
source | propiedad |
public var source:Object
Versión del lenguaje: | ActionScript 3.0 |
Versión de producto: | Adobe Digital Enterprise Platform Document Services - Workspace 9 |
Versiones de motor de ejecución: | AIR (unsupported), Flash Player 9, Flash Player 10 |
The source of the event.
Información sobre constructores
PropertyLoadEvent | () | Información sobre |
public function PropertyLoadEvent(source:Object, propertyName:String, isPropertyCached:Boolean = false, type:String, bubbles:Boolean = false, cancelable:Boolean = false)
Versión del lenguaje: | ActionScript 3.0 |
Versión de producto: | Adobe Digital Enterprise Platform Document Services - Workspace 9 |
Versiones de motor de ejecución: | AIR (unsupported), Flash Player 9, Flash Player 10 |
Constructor.
Parámetrossource:Object — Specifies the source of the event.
| |
propertyName:String — Specifies the property name of the event.
| |
isPropertyCached:Boolean (default = false ) — Specifies whether the property is cached.
| |
type:String (default = NaN ) — Specifies the type of the event. Defaults to PROPERTY_LOAD,
| |
bubbles:Boolean (default = false ) — Specifies whether the event object participates in the bubbling stage of the event flow.
| |
cancelable:Boolean (default = false ) — Specifies whether the event object can be canceled.
|
Información sobre métodos
clone | () | método |
override public function clone():Event
Versión del lenguaje: | ActionScript 3.0 |
Versión de producto: | Adobe Digital Enterprise Platform Document Services - Workspace 9 |
Versiones de motor de ejecución: | AIR (unsupported), Flash Player 9, Flash Player 10 |
Creates a copy of a PropertyLoadEvent
object
and sets the value of each property to match that of the original.
Event — A copy of the PropertyLoadEvent object.
|
Información sobre constantes
PROPERTY_LOAD | Constante |
public static const PROPERTY_LOAD:String = "propertyLoad"
Versión del lenguaje: | ActionScript 3.0 |
Versión de producto: | Adobe Digital Enterprise Platform Document Services - Workspace 9 |
Versiones de motor de ejecución: | AIR (unsupported), Flash Player 9, Flash Player 10 |
A special value that specifies that the properties were loaded.
Tue Jun 12 2018, 02:12 PM Z