| Paquete | lc.foundation.events |
| Clase | public class LiveCycleEvent |
| Herencia | LiveCycleEvent Event Object |
| Subclases | CollectionResultEvent, ObjectResultEvent, QueueSharingActionCompleteEvent, TaskActionCompleteEvent |
| 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 |
LiveCycleEvent event is the base event class for the Workspace API.
Extend this class to create custom events.
Elementos de API relacionados
lc.foundation.events.ObjectResultEvent
lc.procmgmt.events.QueueSharingActionCompleteEvent
lc.procmgmt.events.TaskActionCompleteEvent
| 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 | |
![]() | target : Object [solo lectura]
El destino del evento. | Event | |
| token : lc.foundation.util:Token [solo lectura]
The token that represents the call to the method. | LiveCycleEvent | ||
![]() | type : String [solo lectura]
El tipo de evento. | Event | |
| Método | Definido por | ||
|---|---|---|---|
Constructor. | LiveCycleEvent | ||
[override]
Creates a copy of a LiveCycleEvent object
and sets the value of each property to match that of the original. | LiveCycleEvent | ||
![]() |
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 | |
| Constante | Definido por | ||
|---|---|---|---|
| ATTACHMENT_FILL_COMPLETE : String = "attachmentFillComplete" [estática]
The attachmentFillComplete event type. | LiveCycleEvent | ||
| AUTHENTICATION_COMPLETE : String = "authenticationComplete" [estática]
The authenticationComplete event type. | LiveCycleEvent | ||
| COMMIT_COMPLETE : String = "commitComplete" [estática]
The commitComplete event type. | LiveCycleEvent | ||
| GET_EXTENDED_NOTE_COMPLETE : String = "getExtendedNoteComplete" [estática]
The getExtendedNoteComplete event type. | LiveCycleEvent | ||
| INIT_COMPLETE : String = "initComplete" [estática]
The initComplete event type. | LiveCycleEvent | ||
| LOGIN : String = "login" [estática]
The login event type. | LiveCycleEvent | ||
| LOGOUT : String = "logout" [estática]
The logout event type. | LiveCycleEvent | ||
| LOGOUT_COMPLETE : String = "logoutComplete" [estática]
The logoutComplete event type. | LiveCycleEvent | ||
| PREFERENCES_COMMIT_COMPLETE : String = "preferencesCommitComplete" [estática]
The preferencesCommitComplete event type. | LiveCycleEvent | ||
| PREFERENCES_LOAD_COMPLETE : String = "preferencesLoadComplete" [estática]
The preferencesCommitComplete event type. | LiveCycleEvent | ||
| RELEASE_COMPLETE : String = "releaseComplete" [estática]
The releaseComplete event type. | LiveCycleEvent | ||
| UNLOAD : String = "unload" [estática]
The unload event type. | LiveCycleEvent | ||
token | propiedad |
token:lc.foundation.util:Token [solo lectura] | 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 token that represents the call to the method. Used in the asynchronous completion token pattern.
Implementación
public function get token():lc.foundation.util:TokenLiveCycleEvent | () | Información sobre |
public function LiveCycleEvent(type:String, bubbles:Boolean, cancelable:Boolean, token:lc.foundation.util:Token)| 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ámetrostype:String — Specifies the type of the event.
| |
bubbles:Boolean — Specifies whether the event object participates in the bubbling stage of
the event flow.
| |
cancelable:Boolean — Specifies whether the event object can be canceled.
| |
token:lc.foundation.util:Token — Specifies a request token.
|
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 LiveCycleEvent object
and sets the value of each property to match that of the original.
Event — A copy of the LiveCycleEvent object.
|
ATTACHMENT_FILL_COMPLETE | Constante |
public static const ATTACHMENT_FILL_COMPLETE:String = "attachmentFillComplete"| 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 attachmentFillComplete event type.
AUTHENTICATION_COMPLETE | Constante |
public static const AUTHENTICATION_COMPLETE:String = "authenticationComplete"| 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 authenticationComplete event type.
COMMIT_COMPLETE | Constante |
public static const COMMIT_COMPLETE:String = "commitComplete"| 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 commitComplete event type.
GET_EXTENDED_NOTE_COMPLETE | Constante |
public static const GET_EXTENDED_NOTE_COMPLETE:String = "getExtendedNoteComplete"| 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 getExtendedNoteComplete event type.
INIT_COMPLETE | Constante |
public static const INIT_COMPLETE:String = "initComplete"| 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 initComplete event type.
LOGIN | Constante |
public static const LOGIN:String = "login"| 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 login event type.
LOGOUT | Constante |
public static const LOGOUT:String = "logout"| 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 logout event type.
LOGOUT_COMPLETE | Constante |
public static const LOGOUT_COMPLETE:String = "logoutComplete"| 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 logoutComplete event type.
PREFERENCES_COMMIT_COMPLETE | Constante |
public static const PREFERENCES_COMMIT_COMPLETE:String = "preferencesCommitComplete"| 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 preferencesCommitComplete event type.
PREFERENCES_LOAD_COMPLETE | Constante |
public static const PREFERENCES_LOAD_COMPLETE:String = "preferencesLoadComplete"| 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 preferencesCommitComplete event type.
RELEASE_COMPLETE | Constante |
public static const RELEASE_COMPLETE:String = "releaseComplete"| 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 releaseComplete event type.
UNLOAD | Constante |
public static const UNLOAD:String = "unload"| 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 unload event type.
Tue Jun 12 2018, 02:12 PM Z
Ocultar propiedades públicas heredadas
Mostrar propiedades públicas heredadas