Пакет | lc.procmgmt.events |
Класс | public class TaskActionCompleteEvent |
Наследование | TaskActionCompleteEvent LiveCycleEvent Event Object |
Язык версии: | ActionScript 3.0 |
Версия продукта: | Adobe Digital Enterprise Platform Document Services - Workspace 9 |
Версии среды выполнения: | 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.
Свойство | Определено | ||
---|---|---|---|
bubbles : Boolean [только для чтения]
Определяет, является ли событие событием восходящей цепочки. | Event | ||
cancelable : Boolean [только для чтения]
Указывает, можно ли предотвратить поведение, связанное с событием. | Event | ||
constructor : Object
Ссылка на объект класса или функцию конструктора для данного экземпляра объекта. | Object | ||
currentTarget : Object [только для чтения]
Объект, активно обрабатывающий объект Event с помощью прослушивателя событий. | Event | ||
eventPhase : uint [только для чтения]
Текущая фаза в потоке событий. | Event | ||
target : Object [только для чтения]
Целевой объект события. | Event | ||
taskId : String
The unique identifier of the task. | TaskActionCompleteEvent | ||
token : lc.foundation.util:Token [только для чтения]
The token that represents the call to the method. | LiveCycleEvent | ||
type : String [только для чтения]
Тип события. | Event | ||
userOid : String
The identifier of the user that the task was sent to. | TaskActionCompleteEvent |
Метод | Определено | ||
---|---|---|---|
TaskActionCompleteEvent(taskId:String, userOid:String, type:String, bubbles:Boolean, cancelable:Boolean, token:lc.foundation.util:Token)
Constructor. | TaskActionCompleteEvent | ||
[переопределить]
Creates a copy of a TaskActionCompletedEvent object
and sets the value of each property to match that of the original. | TaskActionCompleteEvent | ||
Служебная функция для реализации метода toString() в пользовательских классах ActionScript 3.0 Event. | Event | ||
Показывает, определено ли заданное свойство для объекта. | Object | ||
Проверяет, выполнялся ли для события вызова метода preventDefault(). | Event | ||
Показывает, есть ли экземпляр класса Object в цепи прототипов объекта, заданного в качестве параметра. | Object | ||
Отменяет поведение по умолчанию для события, если такое поведение можно отменить. | Event | ||
Показывает наличие заданного свойства и его перечисляемость. | Object | ||
Задает доступность динамического свойства для операций цикла. | Object | ||
Отменяет обработку прослушивателей событий в текущем узле, а также во всех узлах, которые следуют в потоке событий за текущим узлом. | Event | ||
Отменяет обработку прослушивателей событий в узлах, которые следуют в потоке событий за текущим узлом. | Event | ||
Возвращает строковое представление этого объекта, отформатированного в соответствии со стандартами, принятыми для данной локали. | Object | ||
Возвращает строку, содержащую все свойства объекта Event. | Event | ||
Возвращает элементарное значение заданного объекта. | Object |
Константа | Определено | ||
---|---|---|---|
TASK_ABANDON : String = "taskAbandon" [статические]
A special value that specifies the abandon task event type. | TaskActionCompleteEvent | ||
TASK_CLAIM : String = "taskClaim" [статические]
A special value that specifies the claim task event type. | TaskActionCompleteEvent | ||
TASK_CONSULT : String = "taskConsult" [статические]
A special value that specifies the consult task event type. | TaskActionCompleteEvent | ||
TASK_DESCRIPTION : String = "taskDescription" [статические]
A special value that specifies the description changed for the task event type. | TaskActionCompleteEvent | ||
TASK_FORWARD : String = "taskForward" [статические]
A special value that specifies the forward task event type. | TaskActionCompleteEvent | ||
TASK_LOCK : String = "taskLock" [статические]
A special value that specifies the lock task event type. | TaskActionCompleteEvent | ||
TASK_REJECT : String = "taskReject" [статические]
A special value that specifies the reject task event type. | TaskActionCompleteEvent | ||
TASK_SHARE : String = "taskShare" [статические]
A special value that specifies the share task event type. | TaskActionCompleteEvent | ||
TASK_UNLOCK : String = "taskUnlock" [статические]
A special value that specifies the unlock task event type. | TaskActionCompleteEvent | ||
TASK_VISIBILITY : String = "taskVisibility" [статические]
A special value that specifies that the visibility changed for the task event type. | TaskActionCompleteEvent |
taskId | свойство |
public var taskId:String
Язык версии: | ActionScript 3.0 |
Версия продукта: | Adobe Digital Enterprise Platform Document Services - Workspace 9 |
Версии среды выполнения: | AIR (unsupported), Flash Player 9, Flash Player 10 |
The unique identifier of the task.
userOid | свойство |
public var userOid:String
Язык версии: | ActionScript 3.0 |
Версия продукта: | Adobe Digital Enterprise Platform Document Services - Workspace 9 |
Версии среды выполнения: | AIR (unsupported), Flash Player 9, Flash Player 10 |
The identifier of the user that the task was sent to.
TaskActionCompleteEvent | () | Конструктор |
public function TaskActionCompleteEvent(taskId:String, userOid:String, type:String, bubbles:Boolean, cancelable:Boolean, token:lc.foundation.util:Token)
Язык версии: | ActionScript 3.0 |
Версия продукта: | Adobe Digital Enterprise Platform Document Services - Workspace 9 |
Версии среды выполнения: | AIR (unsupported), Flash Player 9, Flash Player 10 |
Constructor.
ПараметрыtaskId: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 | () | метод |
override public function clone():Event
Язык версии: | ActionScript 3.0 |
Версия продукта: | Adobe Digital Enterprise Platform Document Services - Workspace 9 |
Версии среды выполнения: | 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 | Константа |
public static const TASK_ABANDON:String = "taskAbandon"
Язык версии: | ActionScript 3.0 |
Версия продукта: | Adobe Digital Enterprise Platform Document Services - Workspace 9 |
Версии среды выполнения: | AIR (unsupported), Flash Player 9, Flash Player 10 |
A special value that specifies the abandon task event type.
TASK_CLAIM | Константа |
public static const TASK_CLAIM:String = "taskClaim"
Язык версии: | ActionScript 3.0 |
Версия продукта: | Adobe Digital Enterprise Platform Document Services - Workspace 9 |
Версии среды выполнения: | AIR (unsupported), Flash Player 9, Flash Player 10 |
A special value that specifies the claim task event type.
TASK_CONSULT | Константа |
public static const TASK_CONSULT:String = "taskConsult"
Язык версии: | ActionScript 3.0 |
Версия продукта: | Adobe Digital Enterprise Platform Document Services - Workspace 9 |
Версии среды выполнения: | AIR (unsupported), Flash Player 9, Flash Player 10 |
A special value that specifies the consult task event type.
TASK_DESCRIPTION | Константа |
public static const TASK_DESCRIPTION:String = "taskDescription"
Язык версии: | ActionScript 3.0 |
Версия продукта: | Adobe Digital Enterprise Platform Document Services - Workspace 9 |
Версии среды выполнения: | AIR (unsupported), Flash Player 9, Flash Player 10 |
A special value that specifies the description changed for the task event type.
TASK_FORWARD | Константа |
public static const TASK_FORWARD:String = "taskForward"
Язык версии: | ActionScript 3.0 |
Версия продукта: | Adobe Digital Enterprise Platform Document Services - Workspace 9 |
Версии среды выполнения: | AIR (unsupported), Flash Player 9, Flash Player 10 |
A special value that specifies the forward task event type.
TASK_LOCK | Константа |
public static const TASK_LOCK:String = "taskLock"
Язык версии: | ActionScript 3.0 |
Версия продукта: | Adobe Digital Enterprise Platform Document Services - Workspace 9 |
Версии среды выполнения: | AIR (unsupported), Flash Player 9, Flash Player 10 |
A special value that specifies the lock task event type.
TASK_REJECT | Константа |
public static const TASK_REJECT:String = "taskReject"
Язык версии: | ActionScript 3.0 |
Версия продукта: | Adobe Digital Enterprise Platform Document Services - Workspace 9 |
Версии среды выполнения: | AIR (unsupported), Flash Player 9, Flash Player 10 |
A special value that specifies the reject task event type.
TASK_SHARE | Константа |
public static const TASK_SHARE:String = "taskShare"
Язык версии: | ActionScript 3.0 |
Версия продукта: | Adobe Digital Enterprise Platform Document Services - Workspace 9 |
Версии среды выполнения: | AIR (unsupported), Flash Player 9, Flash Player 10 |
A special value that specifies the share task event type.
TASK_UNLOCK | Константа |
public static const TASK_UNLOCK:String = "taskUnlock"
Язык версии: | ActionScript 3.0 |
Версия продукта: | Adobe Digital Enterprise Platform Document Services - Workspace 9 |
Версии среды выполнения: | AIR (unsupported), Flash Player 9, Flash Player 10 |
A special value that specifies the unlock task event type.
TASK_VISIBILITY | Константа |
public static const TASK_VISIBILITY:String = "taskVisibility"
Язык версии: | ActionScript 3.0 |
Версия продукта: | Adobe Digital Enterprise Platform Document Services - Workspace 9 |
Версии среды выполнения: | 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, 11:34 AM Z