Пакет | com.adobe.solutions.exm.authoring.events |
Класс | public class ExpressionBuilderEvent |
Наследование | ExpressionBuilderEvent Event Object |
Язык версии: | ActionScript 3.0 |
Версия продукта: | Expression Manager Building Block 10 |
Версии среды выполнения: | AIR (unsupported), Flash Player 10.2 |
Свойство | Определено | ||
---|---|---|---|
bubbles : Boolean [только для чтения]
Определяет, является ли событие событием восходящей цепочки. | Event | ||
cancelable : Boolean [только для чтения]
Указывает, можно ли предотвратить поведение, связанное с событием. | Event | ||
constructor : Object
Ссылка на объект класса или функцию конструктора для данного экземпляра объекта. | Object | ||
currentTarget : Object [только для чтения]
Объект, активно обрабатывающий объект Event с помощью прослушивателя событий. | Event | ||
eventPhase : uint [только для чтения]
Текущая фаза в потоке событий. | Event | ||
expression : IExpression
Selected Expression
| ExpressionBuilderEvent | ||
target : Object [только для чтения]
Целевой объект события. | Event | ||
type : String [только для чтения]
Тип события. | Event |
Метод | Определено | ||
---|---|---|---|
Constructor. | ExpressionBuilderEvent | ||
[переопределить]
Duplicates an instance of an Event subclass. | ExpressionBuilderEvent | ||
Служебная функция для реализации метода toString() в пользовательских классах ActionScript 3.0 Event. | Event | ||
Показывает, определено ли заданное свойство для объекта. | Object | ||
Проверяет, выполнялся ли для события вызова метода preventDefault(). | Event | ||
Показывает, есть ли экземпляр класса Object в цепи прототипов объекта, заданного в качестве параметра. | Object | ||
Отменяет поведение по умолчанию для события, если такое поведение можно отменить. | Event | ||
Показывает наличие заданного свойства и его перечисляемость. | Object | ||
Задает доступность динамического свойства для операций цикла. | Object | ||
Отменяет обработку прослушивателей событий в текущем узле, а также во всех узлах, которые следуют в потоке событий за текущим узлом. | Event | ||
Отменяет обработку прослушивателей событий в узлах, которые следуют в потоке событий за текущим узлом. | Event | ||
Возвращает строковое представление этого объекта, отформатированного в соответствии со стандартами, принятыми для данной локали. | Object | ||
Возвращает строку, содержащую все свойства объекта Event. | Event | ||
Возвращает элементарное значение заданного объекта. | Object |
Константа | Определено | ||
---|---|---|---|
CANCEL_EXPRESSION : String = "cancelExpression" [статические]
The ExpressionBuilderEvent.CANCEL_EXPRESSION constant defines the value of the
type property of the event object for an event that is
dispatched when the agent clicks the Cancel button of a Expression Controlbar
in Expression Builder UI. | ExpressionBuilderEvent | ||
EXPRESSION_CREATION_COMPLETED : String = "expressionCreationCompleted" [статические]
The ExpressionBuilderEvent.EXPRESSION_CREATION_COMPLETED constant defines the value of the
type property of the event object for an event that is
dispatched when the agent clicks the Complete(OK) button of a Expression Controlbar
in Expression Builder UI. | ExpressionBuilderEvent | ||
SAVE_EXPRESSION : String = "saveExpression" [статические]
The ExpressionBuilderEvent.SAVE_EXPRESSION constant defines the value of the
type property of the event object for an event that is
dispatched when the agent clicks the Save button of a Expression Toolbar
in Expression Builder UI. | ExpressionBuilderEvent | ||
UPDATE_EXPRESSION : String = "updateExpression" [статические]
The ExpressionBuilderEvent.UPDATE_EXPRESSION constant defines the value of the
type property of the event object for an event that is
dispatched when the agent clicks the Update button of a Expression Toolbar
in Expression Builder UI. | ExpressionBuilderEvent | ||
VALLIDATE_EXPRESSION : String = "validateExpression" [статические]
The ExpressionBuilderEvent.VALLIDATE_EXPRESSION constant defines the value of the
type property of the event object for an event that is
dispatched when the agent clicks the Valiate button of a Expression Toolbar
in Expression Builder UI. | ExpressionBuilderEvent |
expression | свойство |
public var expression:IExpression
Язык версии: | ActionScript 3.0 |
Версия продукта: | Expression Manager Building Block 10.0 |
Версии среды выполнения: | AIR (unsupported), Flash Player 10.2 |
Selected Expression
ExpressionBuilderEvent | () | Конструктор |
public function ExpressionBuilderEvent(type:String, bubbles:Boolean = false, cancelable:Boolean = false)
Язык версии: | ActionScript 3.0 |
Версия продукта: | Expression Manager Building Block 10.0 |
Версии среды выполнения: | AIR (unsupported), Flash Player 10.2 |
Constructor.
Параметрыtype:String | |
bubbles:Boolean (default = false )
| |
cancelable:Boolean (default = false )
|
clone | () | метод |
override public function clone():Event
Язык версии: | ActionScript 3.0 |
Версия продукта: | Expression Manager Building Block 10 |
Версии среды выполнения: | AIR (unsupported), Flash Player 10.2 |
Duplicates an instance of an Event subclass.
Returns a new Event object that is a copy of the original instance of the Event object.
You do not normally call clone()
; the EventDispatcher class calls it automatically
when you redispatch an event—that is, when you call dispatchEvent(event)
from a handler
that is handling event
.
The new Event object includes all the properties of the original.
When creating your own custom Event class, you must override the
inherited Event.clone()
method in order for it to duplicate the
properties of your custom class. If you do not set all the properties that you add
in your event subclass, those properties will not have the correct values when listeners
handle the redispatched event.
In this example, PingEvent
is a subclass of Event
and therefore implements its own version of clone()
.
class PingEvent extends Event { var URL:String; public override function clone():Event { return new PingEvent(type, bubbles, cancelable, URL); } }
Event — A new Event object that is identical to the original.
|
CANCEL_EXPRESSION | Константа |
public static const CANCEL_EXPRESSION:String = "cancelExpression"
Язык версии: | ActionScript 3.0 |
Версия продукта: | Expression Manager Building Block 10 |
Версии среды выполнения: | AIR (unsupported), Flash Player 10.2 |
The ExpressionBuilderEvent.CANCEL_EXPRESSION constant defines the value of the type property of the event object for an event that is dispatched when the agent clicks the Cancel button of a Expression Controlbar in Expression Builder UI.
EXPRESSION_CREATION_COMPLETED | Константа |
public static const EXPRESSION_CREATION_COMPLETED:String = "expressionCreationCompleted"
Язык версии: | ActionScript 3.0 |
Версия продукта: | Expression Manager Building Block 10 |
Версии среды выполнения: | AIR (unsupported), Flash Player 10.2 |
The ExpressionBuilderEvent.EXPRESSION_CREATION_COMPLETED constant defines the value of the type property of the event object for an event that is dispatched when the agent clicks the Complete(OK) button of a Expression Controlbar in Expression Builder UI.
SAVE_EXPRESSION | Константа |
public static const SAVE_EXPRESSION:String = "saveExpression"
Язык версии: | ActionScript 3.0 |
Версия продукта: | Expression Manager Building Block 10 |
Версии среды выполнения: | AIR (unsupported), Flash Player 10.2 |
The ExpressionBuilderEvent.SAVE_EXPRESSION constant defines the value of the type property of the event object for an event that is dispatched when the agent clicks the Save button of a Expression Toolbar in Expression Builder UI.
UPDATE_EXPRESSION | Константа |
public static const UPDATE_EXPRESSION:String = "updateExpression"
Язык версии: | ActionScript 3.0 |
Версия продукта: | Expression Manager Building Block 10 |
Версии среды выполнения: | AIR (unsupported), Flash Player 10.2 |
The ExpressionBuilderEvent.UPDATE_EXPRESSION constant defines the value of the type property of the event object for an event that is dispatched when the agent clicks the Update button of a Expression Toolbar in Expression Builder UI.
VALLIDATE_EXPRESSION | Константа |
public static const VALLIDATE_EXPRESSION:String = "validateExpression"
Язык версии: | ActionScript 3.0 |
Версия продукта: | Expression Manager Building Block 10 |
Версии среды выполнения: | AIR (unsupported), Flash Player 10.2 |
The ExpressionBuilderEvent.VALLIDATE_EXPRESSION constant defines the value of the type property of the event object for an event that is dispatched when the agent clicks the Valiate button of a Expression Toolbar in Expression Builder UI.
Tue Jun 12 2018, 11:34 AM Z