| Package | lc.procmgmt.events |
| Class | public class TaskActionCompleteEvent |
| Inheritance | TaskActionCompleteEvent LiveCycleEvent Event Object |
| Language Version: | ActionScript 3.0 |
| Product Version: | Adobe Digital Enterprise Platform Document Services - Workspace 9 |
| Runtime Versions: | 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.
| Property | Defined By | ||
|---|---|---|---|
![]() | bubbles : Boolean [read-only]
Indicates whether an event is a bubbling event. | Event | |
![]() | cancelable : Boolean [read-only]
Indicates whether the behavior associated with the event can be prevented. | Event | |
![]() | constructor : Object
A reference to the class object or constructor function for a given object instance. | Object | |
![]() | currentTarget : Object [read-only]
The object that is actively processing the Event object with an event listener. | Event | |
![]() | eventPhase : uint [read-only]
The current phase in the event flow. | Event | |
![]() | target : Object [read-only]
The event target. | Event | |
| taskId : String
The unique identifier of the task. | TaskActionCompleteEvent | ||
![]() | token : lc.foundation.util:Token [read-only]
The token that represents the call to the method. | LiveCycleEvent | |
![]() | type : String [read-only]
The type of event. | Event | |
| userOid : String
The identifier of the user that the task was sent to. | TaskActionCompleteEvent | ||
| Method | Defined By | ||
|---|---|---|---|
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 | ||
![]() |
A utility function for implementing the toString() method in custom
ActionScript 3.0 Event classes. | Event | |
![]() |
Indicates whether an object has a specified property defined. | Object | |
![]() |
Checks whether the preventDefault() method has been called on the event. | Event | |
![]() |
Indicates whether an instance of the Object class is in the prototype chain of the object specified
as the parameter. | Object | |
![]() |
Cancels an event's default behavior if that behavior can be canceled. | Event | |
![]() |
Indicates whether the specified property exists and is enumerable. | Object | |
![]() |
Sets the availability of a dynamic property for loop operations. | Object | |
![]() |
Prevents processing of any event listeners in the current node and any subsequent nodes in
the event flow. | Event | |
![]() |
Prevents processing of any event listeners in nodes subsequent to the current node in the
event flow. | Event | |
![]() |
Returns the string representation of this object, formatted according to locale-specific conventions. | Object | |
![]() |
Returns a string containing all the properties of the Event object. | Event | |
![]() |
Returns the primitive value of the specified object. | Object | |
| Constant | Defined By | ||
|---|---|---|---|
| TASK_ABANDON : String = "taskAbandon" [static]
A special value that specifies the abandon task event type. | TaskActionCompleteEvent | ||
| TASK_CLAIM : String = "taskClaim" [static]
A special value that specifies the claim task event type. | TaskActionCompleteEvent | ||
| TASK_CONSULT : String = "taskConsult" [static]
A special value that specifies the consult task event type. | TaskActionCompleteEvent | ||
| TASK_DESCRIPTION : String = "taskDescription" [static]
A special value that specifies the description changed for the task event type. | TaskActionCompleteEvent | ||
| TASK_FORWARD : String = "taskForward" [static]
A special value that specifies the forward task event type. | TaskActionCompleteEvent | ||
| TASK_LOCK : String = "taskLock" [static]
A special value that specifies the lock task event type. | TaskActionCompleteEvent | ||
| TASK_REJECT : String = "taskReject" [static]
A special value that specifies the reject task event type. | TaskActionCompleteEvent | ||
| TASK_SHARE : String = "taskShare" [static]
A special value that specifies the share task event type. | TaskActionCompleteEvent | ||
| TASK_UNLOCK : String = "taskUnlock" [static]
A special value that specifies the unlock task event type. | TaskActionCompleteEvent | ||
| TASK_VISIBILITY : String = "taskVisibility" [static]
A special value that specifies that the visibility changed for the task event type. | TaskActionCompleteEvent | ||
taskId | property |
public var taskId:String| Language Version: | ActionScript 3.0 |
| Product Version: | Adobe Digital Enterprise Platform Document Services - Workspace 9 |
| Runtime Versions: | AIR (unsupported), Flash Player 9, Flash Player 10 |
The unique identifier of the task.
userOid | property |
public var userOid:String| Language Version: | ActionScript 3.0 |
| Product Version: | Adobe Digital Enterprise Platform Document Services - Workspace 9 |
| Runtime Versions: | AIR (unsupported), Flash Player 9, Flash Player 10 |
The identifier of the user that the task was sent to.
TaskActionCompleteEvent | () | Constructor |
public function TaskActionCompleteEvent(taskId:String, userOid:String, type:String, bubbles:Boolean, cancelable:Boolean, token:lc.foundation.util:Token)| Language Version: | ActionScript 3.0 |
| Product Version: | Adobe Digital Enterprise Platform Document Services - Workspace 9 |
| Runtime Versions: | AIR (unsupported), Flash Player 9, Flash Player 10 |
Constructor.
ParameterstaskId: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 | () | method |
override public function clone():Event| Language Version: | ActionScript 3.0 |
| Product Version: | Adobe Digital Enterprise Platform Document Services - Workspace 9 |
| Runtime Versions: | 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 | Constant |
public static const TASK_ABANDON:String = "taskAbandon"| Language Version: | ActionScript 3.0 |
| Product Version: | Adobe Digital Enterprise Platform Document Services - Workspace 9 |
| Runtime Versions: | AIR (unsupported), Flash Player 9, Flash Player 10 |
A special value that specifies the abandon task event type.
TASK_CLAIM | Constant |
public static const TASK_CLAIM:String = "taskClaim"| Language Version: | ActionScript 3.0 |
| Product Version: | Adobe Digital Enterprise Platform Document Services - Workspace 9 |
| Runtime Versions: | AIR (unsupported), Flash Player 9, Flash Player 10 |
A special value that specifies the claim task event type.
TASK_CONSULT | Constant |
public static const TASK_CONSULT:String = "taskConsult"| Language Version: | ActionScript 3.0 |
| Product Version: | Adobe Digital Enterprise Platform Document Services - Workspace 9 |
| Runtime Versions: | AIR (unsupported), Flash Player 9, Flash Player 10 |
A special value that specifies the consult task event type.
TASK_DESCRIPTION | Constant |
public static const TASK_DESCRIPTION:String = "taskDescription"| Language Version: | ActionScript 3.0 |
| Product Version: | Adobe Digital Enterprise Platform Document Services - Workspace 9 |
| Runtime Versions: | AIR (unsupported), Flash Player 9, Flash Player 10 |
A special value that specifies the description changed for the task event type.
TASK_FORWARD | Constant |
public static const TASK_FORWARD:String = "taskForward"| Language Version: | ActionScript 3.0 |
| Product Version: | Adobe Digital Enterprise Platform Document Services - Workspace 9 |
| Runtime Versions: | AIR (unsupported), Flash Player 9, Flash Player 10 |
A special value that specifies the forward task event type.
TASK_LOCK | Constant |
public static const TASK_LOCK:String = "taskLock"| Language Version: | ActionScript 3.0 |
| Product Version: | Adobe Digital Enterprise Platform Document Services - Workspace 9 |
| Runtime Versions: | AIR (unsupported), Flash Player 9, Flash Player 10 |
A special value that specifies the lock task event type.
TASK_REJECT | Constant |
public static const TASK_REJECT:String = "taskReject"| Language Version: | ActionScript 3.0 |
| Product Version: | Adobe Digital Enterprise Platform Document Services - Workspace 9 |
| Runtime Versions: | AIR (unsupported), Flash Player 9, Flash Player 10 |
A special value that specifies the reject task event type.
TASK_SHARE | Constant |
public static const TASK_SHARE:String = "taskShare"| Language Version: | ActionScript 3.0 |
| Product Version: | Adobe Digital Enterprise Platform Document Services - Workspace 9 |
| Runtime Versions: | AIR (unsupported), Flash Player 9, Flash Player 10 |
A special value that specifies the share task event type.
TASK_UNLOCK | Constant |
public static const TASK_UNLOCK:String = "taskUnlock"| Language Version: | ActionScript 3.0 |
| Product Version: | Adobe Digital Enterprise Platform Document Services - Workspace 9 |
| Runtime Versions: | AIR (unsupported), Flash Player 9, Flash Player 10 |
A special value that specifies the unlock task event type.
TASK_VISIBILITY | Constant |
public static const TASK_VISIBILITY:String = "taskVisibility"| Language Version: | ActionScript 3.0 |
| Product Version: | Adobe Digital Enterprise Platform Document Services - Workspace 9 |
| Runtime Versions: | AIR (unsupported), Flash Player 9, Flash Player 10 |
A special value that specifies that the visibility changed for the task event type.
Thu Dec 6 2018, 01:12 PM -08:00
Hide Inherited Public Properties
Show Inherited Public Properties