Pakiet | lc.foundation.events |
Klasa | public class LiveCycleEvent |
Dziedziczenie | LiveCycleEvent Event Object |
Podklasy | CollectionResultEvent, ObjectResultEvent, QueueSharingActionCompleteEvent, TaskActionCompleteEvent |
Wersja języka: | ActionScript 3.0 |
Wersja produktu: | Adobe Digital Enterprise Platform Document Services - Workspace 9 |
Wersje środowiska wykonawczego: | 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.
Powiązane elementy interfejsu API
lc.foundation.events.ObjectResultEvent
lc.procmgmt.events.QueueSharingActionCompleteEvent
lc.procmgmt.events.TaskActionCompleteEvent
Właściwość | Zdefiniowane przez | ||
---|---|---|---|
bubbles : Boolean [tylko do odczytu]
Określa, czy zdarzenie może przechodzić fazę propagacji. | Event | ||
cancelable : Boolean [tylko do odczytu]
Wskazuje, czy można uniemożliwić operacje skojarzone ze zdarzeniem. | Event | ||
constructor : Object
Odwołanie do obiektu klasy lub funkcji konstruktora, dotyczące danej instancji obiektu. | Object | ||
currentTarget : Object [tylko do odczytu]
Obiekt przetwarzający aktywnie obiekt Event za pomocą detektora zdarzeń. | Event | ||
eventPhase : uint [tylko do odczytu]
Bieżąca faza przepływu zdarzeń. | Event | ||
target : Object [tylko do odczytu]
Miejsce docelowe zdarzenia. | Event | ||
token : lc.foundation.util:Token [tylko do odczytu]
The token that represents the call to the method. | LiveCycleEvent | ||
type : String [tylko do odczytu]
Typ zdarzenia. | Event |
Metoda | Zdefiniowane przez | ||
---|---|---|---|
Constructor. | LiveCycleEvent | ||
[przesłanianie]
Creates a copy of a LiveCycleEvent object
and sets the value of each property to match that of the original. | LiveCycleEvent | ||
Funkcja narzędziowa umożliwiająca implementację metody toString() w niestandardowych klasach Event w języku ActionScript 3.0. | Event | ||
Wskazuje, czy dla obiektu zdefiniowano określoną właściwość. | Object | ||
Sprawdza, czy w odniesieniu do tego zdarzenia wywołano metodę preventDefault(). | Event | ||
Wskazuje, czy instancja klasy Object należy do łańcucha prototypów obiektu określonego jako parametr. | Object | ||
Anuluje domyślne ustawienia zdarzenia, o ile zachowanie to może być anulowane. | Event | ||
Wskazuje, czy określona właściwość istnieje i jest przeliczalna. | Object | ||
Ustawia dostępność właściwości dynamicznej używanej w pętlach. | Object | ||
Zapobiega przetwarzaniu wszelkich detektorów zdarzeń w węźle bieżącym i węzłach następujących po nim. | Event | ||
Zapobiega przetwarzaniu wszelkich detektorów zdarzeń w węzłach następujących po węźle bieżącym w przepływie zdarzeń. | Event | ||
Zwraca ciąg reprezentujący obiekt — sformatowany zgodnie z konwencjami właściwymi dla ustawień regionalnych. | Object | ||
Zwraca ciąg znaków, który zawiera wszystkie właściwości obiektu Event. | Event | ||
Zwraca pierwotną wartość dla określonego obiektu. | Object |
Stała | Zdefiniowane przez | ||
---|---|---|---|
ATTACHMENT_FILL_COMPLETE : String = "attachmentFillComplete" [statyczny]
The attachmentFillComplete event type. | LiveCycleEvent | ||
AUTHENTICATION_COMPLETE : String = "authenticationComplete" [statyczny]
The authenticationComplete event type. | LiveCycleEvent | ||
COMMIT_COMPLETE : String = "commitComplete" [statyczny]
The commitComplete event type. | LiveCycleEvent | ||
GET_EXTENDED_NOTE_COMPLETE : String = "getExtendedNoteComplete" [statyczny]
The getExtendedNoteComplete event type. | LiveCycleEvent | ||
INIT_COMPLETE : String = "initComplete" [statyczny]
The initComplete event type. | LiveCycleEvent | ||
LOGIN : String = "login" [statyczny]
The login event type. | LiveCycleEvent | ||
LOGOUT : String = "logout" [statyczny]
The logout event type. | LiveCycleEvent | ||
LOGOUT_COMPLETE : String = "logoutComplete" [statyczny]
The logoutComplete event type. | LiveCycleEvent | ||
PREFERENCES_COMMIT_COMPLETE : String = "preferencesCommitComplete" [statyczny]
The preferencesCommitComplete event type. | LiveCycleEvent | ||
PREFERENCES_LOAD_COMPLETE : String = "preferencesLoadComplete" [statyczny]
The preferencesCommitComplete event type. | LiveCycleEvent | ||
RELEASE_COMPLETE : String = "releaseComplete" [statyczny]
The releaseComplete event type. | LiveCycleEvent | ||
UNLOAD : String = "unload" [statyczny]
The unload event type. | LiveCycleEvent |
token | właściwość |
token:lc.foundation.util:Token
[tylko do odczytu] Wersja języka: | ActionScript 3.0 |
Wersja produktu: | Adobe Digital Enterprise Platform Document Services - Workspace 9 |
Wersje środowiska wykonawczego: | AIR (unsupported), Flash Player 9, Flash Player 10 |
The token that represents the call to the method. Used in the asynchronous completion token pattern.
Implementacja
public function get token():lc.foundation.util:Token
LiveCycleEvent | () | Konstruktor |
public function LiveCycleEvent(type:String, bubbles:Boolean, cancelable:Boolean, token:lc.foundation.util:Token)
Wersja języka: | ActionScript 3.0 |
Wersja produktu: | Adobe Digital Enterprise Platform Document Services - Workspace 9 |
Wersje środowiska wykonawczego: | AIR (unsupported), Flash Player 9, Flash Player 10 |
Constructor.
Parametrytype: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 | () | metoda |
override public function clone():Event
Wersja języka: | ActionScript 3.0 |
Wersja produktu: | Adobe Digital Enterprise Platform Document Services - Workspace 9 |
Wersje środowiska wykonawczego: | 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 | Stała |
public static const ATTACHMENT_FILL_COMPLETE:String = "attachmentFillComplete"
Wersja języka: | ActionScript 3.0 |
Wersja produktu: | Adobe Digital Enterprise Platform Document Services - Workspace 9 |
Wersje środowiska wykonawczego: | AIR (unsupported), Flash Player 9, Flash Player 10 |
The attachmentFillComplete
event type.
AUTHENTICATION_COMPLETE | Stała |
public static const AUTHENTICATION_COMPLETE:String = "authenticationComplete"
Wersja języka: | ActionScript 3.0 |
Wersja produktu: | Adobe Digital Enterprise Platform Document Services - Workspace 9 |
Wersje środowiska wykonawczego: | AIR (unsupported), Flash Player 9, Flash Player 10 |
The authenticationComplete
event type.
COMMIT_COMPLETE | Stała |
public static const COMMIT_COMPLETE:String = "commitComplete"
Wersja języka: | ActionScript 3.0 |
Wersja produktu: | Adobe Digital Enterprise Platform Document Services - Workspace 9 |
Wersje środowiska wykonawczego: | AIR (unsupported), Flash Player 9, Flash Player 10 |
The commitComplete
event type.
GET_EXTENDED_NOTE_COMPLETE | Stała |
public static const GET_EXTENDED_NOTE_COMPLETE:String = "getExtendedNoteComplete"
Wersja języka: | ActionScript 3.0 |
Wersja produktu: | Adobe Digital Enterprise Platform Document Services - Workspace 9 |
Wersje środowiska wykonawczego: | AIR (unsupported), Flash Player 9, Flash Player 10 |
The getExtendedNoteComplete
event type.
INIT_COMPLETE | Stała |
public static const INIT_COMPLETE:String = "initComplete"
Wersja języka: | ActionScript 3.0 |
Wersja produktu: | Adobe Digital Enterprise Platform Document Services - Workspace 9 |
Wersje środowiska wykonawczego: | AIR (unsupported), Flash Player 9, Flash Player 10 |
The initComplete
event type.
LOGIN | Stała |
public static const LOGIN:String = "login"
Wersja języka: | ActionScript 3.0 |
Wersja produktu: | Adobe Digital Enterprise Platform Document Services - Workspace 9 |
Wersje środowiska wykonawczego: | AIR (unsupported), Flash Player 9, Flash Player 10 |
The login
event type.
LOGOUT | Stała |
public static const LOGOUT:String = "logout"
Wersja języka: | ActionScript 3.0 |
Wersja produktu: | Adobe Digital Enterprise Platform Document Services - Workspace 9 |
Wersje środowiska wykonawczego: | AIR (unsupported), Flash Player 9, Flash Player 10 |
The logout
event type.
LOGOUT_COMPLETE | Stała |
public static const LOGOUT_COMPLETE:String = "logoutComplete"
Wersja języka: | ActionScript 3.0 |
Wersja produktu: | Adobe Digital Enterprise Platform Document Services - Workspace 9 |
Wersje środowiska wykonawczego: | AIR (unsupported), Flash Player 9, Flash Player 10 |
The logoutComplete
event type.
PREFERENCES_COMMIT_COMPLETE | Stała |
public static const PREFERENCES_COMMIT_COMPLETE:String = "preferencesCommitComplete"
Wersja języka: | ActionScript 3.0 |
Wersja produktu: | Adobe Digital Enterprise Platform Document Services - Workspace 9 |
Wersje środowiska wykonawczego: | AIR (unsupported), Flash Player 9, Flash Player 10 |
The preferencesCommitComplete
event type.
PREFERENCES_LOAD_COMPLETE | Stała |
public static const PREFERENCES_LOAD_COMPLETE:String = "preferencesLoadComplete"
Wersja języka: | ActionScript 3.0 |
Wersja produktu: | Adobe Digital Enterprise Platform Document Services - Workspace 9 |
Wersje środowiska wykonawczego: | AIR (unsupported), Flash Player 9, Flash Player 10 |
The preferencesCommitComplete
event type.
RELEASE_COMPLETE | Stała |
public static const RELEASE_COMPLETE:String = "releaseComplete"
Wersja języka: | ActionScript 3.0 |
Wersja produktu: | Adobe Digital Enterprise Platform Document Services - Workspace 9 |
Wersje środowiska wykonawczego: | AIR (unsupported), Flash Player 9, Flash Player 10 |
The releaseComplete
event type.
UNLOAD | Stała |
public static const UNLOAD:String = "unload"
Wersja języka: | ActionScript 3.0 |
Wersja produktu: | Adobe Digital Enterprise Platform Document Services - Workspace 9 |
Wersje środowiska wykonawczego: | AIR (unsupported), Flash Player 9, Flash Player 10 |
The unload
event type.
Tue Jun 12 2018, 12:06 PM Z