Paket | lc.procmgmt.events |
Klasse | public class TaskActionCompleteEvent |
Vererbung | TaskActionCompleteEvent LiveCycleEvent Event Object |
Sprachversion: | ActionScript 3.0 |
Produktversion: | Adobe Digital Enterprise Platform Document Services - Workspace 9 |
Laufzeitversionen: | 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.
Eigenschaft | Definiert von | ||
---|---|---|---|
bubbles : Boolean [schreibgeschützt]
Gibt an, ob es sich bei dem Ereignis um ein Bubbling-Ereignis handelt. | Event | ||
cancelable : Boolean [schreibgeschützt]
Gibt an, ob das mit dem Ereignis verknüpfte Verhalten verhindert werden kann. | Event | ||
constructor : Object
Ein Verweis auf das Klassenobjekt oder die Konstruktorfunktion für eine angegebene Objektinstanz. | Object | ||
currentTarget : Object [schreibgeschützt]
Das Objekt, welches das Ereignisobjekt aktiv mit einem Ereignis-Listener verarbeitet. | Event | ||
eventPhase : uint [schreibgeschützt]
Die aktuelle Phase im Ereignisablauf. | Event | ||
target : Object [schreibgeschützt]
Das Ereignis-Ziel. | Event | ||
taskId : String
The unique identifier of the task. | TaskActionCompleteEvent | ||
token : lc.foundation.util:Token [schreibgeschützt]
The token that represents the call to the method. | LiveCycleEvent | ||
type : String [schreibgeschützt]
Der Ereignistyp. | Event | ||
userOid : String
The identifier of the user that the task was sent to. | TaskActionCompleteEvent |
Methode | Definiert von | ||
---|---|---|---|
TaskActionCompleteEvent(taskId:String, userOid:String, type:String, bubbles:Boolean, cancelable:Boolean, token:lc.foundation.util:Token)
Constructor. | TaskActionCompleteEvent | ||
[override]
Creates a copy of a TaskActionCompletedEvent object
and sets the value of each property to match that of the original. | TaskActionCompleteEvent | ||
Eine Dienstprogrammfunktion zur Implementierung der toString()-Methode in benutzerdefinierten ActionScript 3.0 Event-Klassen. | Event | ||
Gibt an, ob für ein Objekt eine bestimmte Eigenschaft definiert wurde. | Object | ||
Überprüft, ob die preventDefault()-Methode bei dem Ereignis aufgerufen wurde. | Event | ||
Gibt an, ob eine Instanz der Object-Klasse in der Prototypkette des Objekts vorhanden ist, das als Parameter angegeben wurde. | Object | ||
Bricht das Standardverhalten eines Ereignisses ab, wenn dieses Verhalten abgebrochen werden kann. | Event | ||
Gibt an, ob die angegebene Eigenschaft vorhanden ist und durchlaufen werden kann. | Object | ||
Legt die Verfügbarkeit einer dynamischen Eigenschaft für Schleifenoperationen fest. | Object | ||
Verhindert die Verarbeitung von Ereignis-Listenern im aktuellen Knoten und in Knoten, die dem aktuellen Knoten im Ereignisablauf nachfolgen. | Event | ||
Verhindert die Verarbeitung von Ereignis-Listenern in Knoten, die dem aktuellen Knoten im Ereignisablauf nachfolgen. | Event | ||
Gibt die Stringdarstellung dieses Objekts zurück, formatiert entsprechend den Konventionen des Gebietsschemas. | Object | ||
Gibt eine Zeichenfolge zurück, die alle Eigenschaften des Ereignisobjekts enthält. | Event | ||
Gibt den Grundwert des angegebenen Objekts zurück. | Object |
Konstante | Definiert von | ||
---|---|---|---|
TASK_ABANDON : String = "taskAbandon" [statisch]
A special value that specifies the abandon task event type. | TaskActionCompleteEvent | ||
TASK_CLAIM : String = "taskClaim" [statisch]
A special value that specifies the claim task event type. | TaskActionCompleteEvent | ||
TASK_CONSULT : String = "taskConsult" [statisch]
A special value that specifies the consult task event type. | TaskActionCompleteEvent | ||
TASK_DESCRIPTION : String = "taskDescription" [statisch]
A special value that specifies the description changed for the task event type. | TaskActionCompleteEvent | ||
TASK_FORWARD : String = "taskForward" [statisch]
A special value that specifies the forward task event type. | TaskActionCompleteEvent | ||
TASK_LOCK : String = "taskLock" [statisch]
A special value that specifies the lock task event type. | TaskActionCompleteEvent | ||
TASK_REJECT : String = "taskReject" [statisch]
A special value that specifies the reject task event type. | TaskActionCompleteEvent | ||
TASK_SHARE : String = "taskShare" [statisch]
A special value that specifies the share task event type. | TaskActionCompleteEvent | ||
TASK_UNLOCK : String = "taskUnlock" [statisch]
A special value that specifies the unlock task event type. | TaskActionCompleteEvent | ||
TASK_VISIBILITY : String = "taskVisibility" [statisch]
A special value that specifies that the visibility changed for the task event type. | TaskActionCompleteEvent |
taskId | Eigenschaft |
public var taskId:String
Sprachversion: | ActionScript 3.0 |
Produktversion: | Adobe Digital Enterprise Platform Document Services - Workspace 9 |
Laufzeitversionen: | AIR (unsupported), Flash Player 9, Flash Player 10 |
The unique identifier of the task.
userOid | Eigenschaft |
public var userOid:String
Sprachversion: | ActionScript 3.0 |
Produktversion: | Adobe Digital Enterprise Platform Document Services - Workspace 9 |
Laufzeitversionen: | 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)
Sprachversion: | ActionScript 3.0 |
Produktversion: | Adobe Digital Enterprise Platform Document Services - Workspace 9 |
Laufzeitversionen: | AIR (unsupported), Flash Player 9, Flash Player 10 |
Constructor.
ParametertaskId: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 | () | Methode |
override public function clone():Event
Sprachversion: | ActionScript 3.0 |
Produktversion: | Adobe Digital Enterprise Platform Document Services - Workspace 9 |
Laufzeitversionen: | 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 | Konstante |
public static const TASK_ABANDON:String = "taskAbandon"
Sprachversion: | ActionScript 3.0 |
Produktversion: | Adobe Digital Enterprise Platform Document Services - Workspace 9 |
Laufzeitversionen: | AIR (unsupported), Flash Player 9, Flash Player 10 |
A special value that specifies the abandon task event type.
TASK_CLAIM | Konstante |
public static const TASK_CLAIM:String = "taskClaim"
Sprachversion: | ActionScript 3.0 |
Produktversion: | Adobe Digital Enterprise Platform Document Services - Workspace 9 |
Laufzeitversionen: | AIR (unsupported), Flash Player 9, Flash Player 10 |
A special value that specifies the claim task event type.
TASK_CONSULT | Konstante |
public static const TASK_CONSULT:String = "taskConsult"
Sprachversion: | ActionScript 3.0 |
Produktversion: | Adobe Digital Enterprise Platform Document Services - Workspace 9 |
Laufzeitversionen: | AIR (unsupported), Flash Player 9, Flash Player 10 |
A special value that specifies the consult task event type.
TASK_DESCRIPTION | Konstante |
public static const TASK_DESCRIPTION:String = "taskDescription"
Sprachversion: | ActionScript 3.0 |
Produktversion: | Adobe Digital Enterprise Platform Document Services - Workspace 9 |
Laufzeitversionen: | AIR (unsupported), Flash Player 9, Flash Player 10 |
A special value that specifies the description changed for the task event type.
TASK_FORWARD | Konstante |
public static const TASK_FORWARD:String = "taskForward"
Sprachversion: | ActionScript 3.0 |
Produktversion: | Adobe Digital Enterprise Platform Document Services - Workspace 9 |
Laufzeitversionen: | AIR (unsupported), Flash Player 9, Flash Player 10 |
A special value that specifies the forward task event type.
TASK_LOCK | Konstante |
public static const TASK_LOCK:String = "taskLock"
Sprachversion: | ActionScript 3.0 |
Produktversion: | Adobe Digital Enterprise Platform Document Services - Workspace 9 |
Laufzeitversionen: | AIR (unsupported), Flash Player 9, Flash Player 10 |
A special value that specifies the lock task event type.
TASK_REJECT | Konstante |
public static const TASK_REJECT:String = "taskReject"
Sprachversion: | ActionScript 3.0 |
Produktversion: | Adobe Digital Enterprise Platform Document Services - Workspace 9 |
Laufzeitversionen: | AIR (unsupported), Flash Player 9, Flash Player 10 |
A special value that specifies the reject task event type.
TASK_SHARE | Konstante |
public static const TASK_SHARE:String = "taskShare"
Sprachversion: | ActionScript 3.0 |
Produktversion: | Adobe Digital Enterprise Platform Document Services - Workspace 9 |
Laufzeitversionen: | AIR (unsupported), Flash Player 9, Flash Player 10 |
A special value that specifies the share task event type.
TASK_UNLOCK | Konstante |
public static const TASK_UNLOCK:String = "taskUnlock"
Sprachversion: | ActionScript 3.0 |
Produktversion: | Adobe Digital Enterprise Platform Document Services - Workspace 9 |
Laufzeitversionen: | AIR (unsupported), Flash Player 9, Flash Player 10 |
A special value that specifies the unlock task event type.
TASK_VISIBILITY | Konstante |
public static const TASK_VISIBILITY:String = "taskVisibility"
Sprachversion: | ActionScript 3.0 |
Produktversion: | Adobe Digital Enterprise Platform Document Services - Workspace 9 |
Laufzeitversionen: | 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, 10:04 AM Z