| Package | lc.procmgmt.events |
| Classe | public class TaskActionCompleteEvent |
| Héritage | TaskActionCompleteEvent LiveCycleEvent Event Object |
| Version du langage: | ActionScript 3.0 |
| Version du produit: | Adobe Digital Enterprise Platform Document Services - Workspace 9 |
| Versions du moteur d’exécution: | 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.
| Propriété | Défini par | ||
|---|---|---|---|
![]() | bubbles : Boolean [lecture seule]
Indique si un événement peut se propager vers le haut (bubbling). | Event | |
![]() | cancelable : Boolean [lecture seule]
Indique si le comportement associé à l’événement peut être évité. | Event | |
![]() | constructor : Object
Référence à l’objet de classe ou à la fonction constructeur d’une occurrence donnée d’un objet. | Object | |
![]() | currentTarget : Object [lecture seule]
L’objet qui traite activement l’objet Event avec un écouteur d’événements. | Event | |
![]() | eventPhase : uint [lecture seule]
Phase actuelle du flux d’événements. | Event | |
![]() | target : Object [lecture seule]
Cible de l’événement. | Event | |
| taskId : String
The unique identifier of the task. | TaskActionCompleteEvent | ||
![]() | token : lc.foundation.util:Token [lecture seule]
The token that represents the call to the method. | LiveCycleEvent | |
![]() | type : String [lecture seule]
Type d’événement. | Event | |
| userOid : String
The identifier of the user that the task was sent to. | TaskActionCompleteEvent | ||
| Méthode | Défini par | ||
|---|---|---|---|
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 | ||
![]() |
Fonction d’un utilitaire permettant d’implémenter la méthode toString() dans des classes Event ActionScript 3.0 personnalisées. | Event | |
![]() |
Indique si la propriété spécifiée d’un objet est définie. | Object | |
![]() |
Vérifie si la méthode preventDefault() a été appelée pour l’événement. | Event | |
![]() |
Indique si une occurrence de la classe Object figure dans la chaîne de prototype de l’objet spécifié en tant que paramètre. | Object | |
![]() |
Annule le comportement par défaut d’un événement si cette opération est possible. | Event | |
![]() |
Indique si la propriété spécifiée existe et est énumérable. | Object | |
![]() |
Définit la disponibilité d’une propriété dynamique pour les opérations en boucle. | Object | |
![]() |
Bloque le traitement des écouteurs d’événement dans le nœud actuel et les suivants dans le flux d’événements. | Event | |
![]() |
Bloque le traitement des écouteurs d’événement dans les nœuds qui suivent le nœud actuel dans le flux d’événements. | Event | |
![]() |
Renvoie la représentation de chaîne de cet objet, formatée selon les paramètres régionaux en vigueur. | Object | |
![]() |
Renvoie une chaîne répertoriant toutes les propriétés de l’objet Event. | Event | |
![]() |
Renvoie la valeur primitive de l’objet spécifié. | Object | |
| Constante | Défini par | ||
|---|---|---|---|
| TASK_ABANDON : String = "taskAbandon" [statique]
A special value that specifies the abandon task event type. | TaskActionCompleteEvent | ||
| TASK_CLAIM : String = "taskClaim" [statique]
A special value that specifies the claim task event type. | TaskActionCompleteEvent | ||
| TASK_CONSULT : String = "taskConsult" [statique]
A special value that specifies the consult task event type. | TaskActionCompleteEvent | ||
| TASK_DESCRIPTION : String = "taskDescription" [statique]
A special value that specifies the description changed for the task event type. | TaskActionCompleteEvent | ||
| TASK_FORWARD : String = "taskForward" [statique]
A special value that specifies the forward task event type. | TaskActionCompleteEvent | ||
| TASK_LOCK : String = "taskLock" [statique]
A special value that specifies the lock task event type. | TaskActionCompleteEvent | ||
| TASK_REJECT : String = "taskReject" [statique]
A special value that specifies the reject task event type. | TaskActionCompleteEvent | ||
| TASK_SHARE : String = "taskShare" [statique]
A special value that specifies the share task event type. | TaskActionCompleteEvent | ||
| TASK_UNLOCK : String = "taskUnlock" [statique]
A special value that specifies the unlock task event type. | TaskActionCompleteEvent | ||
| TASK_VISIBILITY : String = "taskVisibility" [statique]
A special value that specifies that the visibility changed for the task event type. | TaskActionCompleteEvent | ||
taskId | propriété |
public var taskId:String| Version du langage: | ActionScript 3.0 |
| Version du produit: | Adobe Digital Enterprise Platform Document Services - Workspace 9 |
| Versions du moteur d’exécution: | AIR (unsupported), Flash Player 9, Flash Player 10 |
The unique identifier of the task.
userOid | propriété |
public var userOid:String| Version du langage: | ActionScript 3.0 |
| Version du produit: | Adobe Digital Enterprise Platform Document Services - Workspace 9 |
| Versions du moteur d’exécution: | AIR (unsupported), Flash Player 9, Flash Player 10 |
The identifier of the user that the task was sent to.
TaskActionCompleteEvent | () | Constructeur |
public function TaskActionCompleteEvent(taskId:String, userOid:String, type:String, bubbles:Boolean, cancelable:Boolean, token:lc.foundation.util:Token)| Version du langage: | ActionScript 3.0 |
| Version du produit: | Adobe Digital Enterprise Platform Document Services - Workspace 9 |
| Versions du moteur d’exécution: | AIR (unsupported), Flash Player 9, Flash Player 10 |
Constructor.
ParamètrestaskId: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 | () | méthode |
override public function clone():Event| Version du langage: | ActionScript 3.0 |
| Version du produit: | Adobe Digital Enterprise Platform Document Services - Workspace 9 |
| Versions du moteur d’exécution: | 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 | Constante |
public static const TASK_ABANDON:String = "taskAbandon"| Version du langage: | ActionScript 3.0 |
| Version du produit: | Adobe Digital Enterprise Platform Document Services - Workspace 9 |
| Versions du moteur d’exécution: | AIR (unsupported), Flash Player 9, Flash Player 10 |
A special value that specifies the abandon task event type.
TASK_CLAIM | Constante |
public static const TASK_CLAIM:String = "taskClaim"| Version du langage: | ActionScript 3.0 |
| Version du produit: | Adobe Digital Enterprise Platform Document Services - Workspace 9 |
| Versions du moteur d’exécution: | AIR (unsupported), Flash Player 9, Flash Player 10 |
A special value that specifies the claim task event type.
TASK_CONSULT | Constante |
public static const TASK_CONSULT:String = "taskConsult"| Version du langage: | ActionScript 3.0 |
| Version du produit: | Adobe Digital Enterprise Platform Document Services - Workspace 9 |
| Versions du moteur d’exécution: | AIR (unsupported), Flash Player 9, Flash Player 10 |
A special value that specifies the consult task event type.
TASK_DESCRIPTION | Constante |
public static const TASK_DESCRIPTION:String = "taskDescription"| Version du langage: | ActionScript 3.0 |
| Version du produit: | Adobe Digital Enterprise Platform Document Services - Workspace 9 |
| Versions du moteur d’exécution: | AIR (unsupported), Flash Player 9, Flash Player 10 |
A special value that specifies the description changed for the task event type.
TASK_FORWARD | Constante |
public static const TASK_FORWARD:String = "taskForward"| Version du langage: | ActionScript 3.0 |
| Version du produit: | Adobe Digital Enterprise Platform Document Services - Workspace 9 |
| Versions du moteur d’exécution: | AIR (unsupported), Flash Player 9, Flash Player 10 |
A special value that specifies the forward task event type.
TASK_LOCK | Constante |
public static const TASK_LOCK:String = "taskLock"| Version du langage: | ActionScript 3.0 |
| Version du produit: | Adobe Digital Enterprise Platform Document Services - Workspace 9 |
| Versions du moteur d’exécution: | AIR (unsupported), Flash Player 9, Flash Player 10 |
A special value that specifies the lock task event type.
TASK_REJECT | Constante |
public static const TASK_REJECT:String = "taskReject"| Version du langage: | ActionScript 3.0 |
| Version du produit: | Adobe Digital Enterprise Platform Document Services - Workspace 9 |
| Versions du moteur d’exécution: | AIR (unsupported), Flash Player 9, Flash Player 10 |
A special value that specifies the reject task event type.
TASK_SHARE | Constante |
public static const TASK_SHARE:String = "taskShare"| Version du langage: | ActionScript 3.0 |
| Version du produit: | Adobe Digital Enterprise Platform Document Services - Workspace 9 |
| Versions du moteur d’exécution: | AIR (unsupported), Flash Player 9, Flash Player 10 |
A special value that specifies the share task event type.
TASK_UNLOCK | Constante |
public static const TASK_UNLOCK:String = "taskUnlock"| Version du langage: | ActionScript 3.0 |
| Version du produit: | Adobe Digital Enterprise Platform Document Services - Workspace 9 |
| Versions du moteur d’exécution: | AIR (unsupported), Flash Player 9, Flash Player 10 |
A special value that specifies the unlock task event type.
TASK_VISIBILITY | Constante |
public static const TASK_VISIBILITY:String = "taskVisibility"| Version du langage: | ActionScript 3.0 |
| Version du produit: | Adobe Digital Enterprise Platform Document Services - Workspace 9 |
| Versions du moteur d’exécution: | 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, 09:30 AM Z
Masquer les propriétés publiques héritées
Afficher les propriétés publiques héritées