Pakiet | lc.procmgmt.events |
Klasa | public class TaskActionCompleteEvent |
Dziedziczenie | TaskActionCompleteEvent LiveCycleEvent Event Object |
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 |
TaskActionCompleteEvent
event is dispatched when a task action such as
consult, forward, or delegate returns. This does not mean
that the task is available to the recipient; it means that the action has been accepted.
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 | ||
taskId : String
The unique identifier of the task. | TaskActionCompleteEvent | ||
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 | ||
userOid : String
The identifier of the user that the task was sent to. | TaskActionCompleteEvent |
Metoda | Zdefiniowane przez | ||
---|---|---|---|
TaskActionCompleteEvent(taskId:String, userOid:String, type:String, bubbles:Boolean, cancelable:Boolean, token:lc.foundation.util:Token)
Constructor. | TaskActionCompleteEvent | ||
[przesłanianie]
Creates a copy of a TaskActionCompletedEvent object
and sets the value of each property to match that of the original. | TaskActionCompleteEvent | ||
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 | ||
---|---|---|---|
TASK_ABANDON : String = "taskAbandon" [statyczny]
A special value that specifies the abandon task event type. | TaskActionCompleteEvent | ||
TASK_CLAIM : String = "taskClaim" [statyczny]
A special value that specifies the claim task event type. | TaskActionCompleteEvent | ||
TASK_CONSULT : String = "taskConsult" [statyczny]
A special value that specifies the consult task event type. | TaskActionCompleteEvent | ||
TASK_DESCRIPTION : String = "taskDescription" [statyczny]
A special value that specifies the description changed for the task event type. | TaskActionCompleteEvent | ||
TASK_FORWARD : String = "taskForward" [statyczny]
A special value that specifies the forward task event type. | TaskActionCompleteEvent | ||
TASK_LOCK : String = "taskLock" [statyczny]
A special value that specifies the lock task event type. | TaskActionCompleteEvent | ||
TASK_REJECT : String = "taskReject" [statyczny]
A special value that specifies the reject task event type. | TaskActionCompleteEvent | ||
TASK_SHARE : String = "taskShare" [statyczny]
A special value that specifies the share task event type. | TaskActionCompleteEvent | ||
TASK_UNLOCK : String = "taskUnlock" [statyczny]
A special value that specifies the unlock task event type. | TaskActionCompleteEvent | ||
TASK_VISIBILITY : String = "taskVisibility" [statyczny]
A special value that specifies that the visibility changed for the task event type. | TaskActionCompleteEvent |
taskId | właściwość |
public var taskId:String
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 unique identifier of the task.
userOid | właściwość |
public var userOid:String
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 identifier of the user that the task was sent to.
TaskActionCompleteEvent | () | Konstruktor |
public function TaskActionCompleteEvent(taskId:String, userOid:String, 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.
ParametrytaskId:String — Specifies the identifier of the task.
| |
userOid:String — Specifies the identifier of the user that the task was sent to.
| |
type: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 the 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 TaskActionCompletedEvent
object
and sets the value of each property to match that of the original.
Event — A copy of the TaskActionCompletedEvent object.
|
TASK_ABANDON | Stała |
public static const TASK_ABANDON:String = "taskAbandon"
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 |
A special value that specifies the abandon task event type.
TASK_CLAIM | Stała |
public static const TASK_CLAIM:String = "taskClaim"
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 |
A special value that specifies the claim task event type.
TASK_CONSULT | Stała |
public static const TASK_CONSULT:String = "taskConsult"
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 |
A special value that specifies the consult task event type.
TASK_DESCRIPTION | Stała |
public static const TASK_DESCRIPTION:String = "taskDescription"
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 |
A special value that specifies the description changed for the task event type.
TASK_FORWARD | Stała |
public static const TASK_FORWARD:String = "taskForward"
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 |
A special value that specifies the forward task event type.
TASK_LOCK | Stała |
public static const TASK_LOCK:String = "taskLock"
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 |
A special value that specifies the lock task event type.
TASK_REJECT | Stała |
public static const TASK_REJECT:String = "taskReject"
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 |
A special value that specifies the reject task event type.
TASK_SHARE | Stała |
public static const TASK_SHARE:String = "taskShare"
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 |
A special value that specifies the share task event type.
TASK_UNLOCK | Stała |
public static const TASK_UNLOCK:String = "taskUnlock"
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 |
A special value that specifies the unlock task event type.
TASK_VISIBILITY | Stała |
public static const TASK_VISIBILITY:String = "taskVisibility"
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 |
A special value that specifies that the visibility changed for the task event type.
Tue Jun 12 2018, 12:06 PM Z