Пакет | com.adobe.solutions.exm.authoring.events |
Класс | public class FunctionsPanelToolBarEvent |
Наследование | FunctionsPanelToolBarEvent 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 | ||
functionFamily : IFunctionFamily
Reference to search Text
| FunctionsPanelToolBarEvent | ||
target : Object [только для чтения]
Целевой объект события. | Event | ||
type : String [только для чтения]
Тип события. | Event |
Метод | Определено | ||
---|---|---|---|
Constructor. | FunctionsPanelToolBarEvent | ||
[переопределить]
Duplicates an instance of an Event subclass. | FunctionsPanelToolBarEvent | ||
Служебная функция для реализации метода toString() в пользовательских классах ActionScript 3.0 Event. | Event | ||
Показывает, определено ли заданное свойство для объекта. | Object | ||
Проверяет, выполнялся ли для события вызова метода preventDefault(). | Event | ||
Показывает, есть ли экземпляр класса Object в цепи прототипов объекта, заданного в качестве параметра. | Object | ||
Отменяет поведение по умолчанию для события, если такое поведение можно отменить. | Event | ||
Показывает наличие заданного свойства и его перечисляемость. | Object | ||
Задает доступность динамического свойства для операций цикла. | Object | ||
Отменяет обработку прослушивателей событий в текущем узле, а также во всех узлах, которые следуют в потоке событий за текущим узлом. | Event | ||
Отменяет обработку прослушивателей событий в узлах, которые следуют в потоке событий за текущим узлом. | Event | ||
Возвращает строковое представление этого объекта, отформатированного в соответствии со стандартами, принятыми для данной локали. | Object | ||
Возвращает строку, содержащую все свойства объекта Event. | Event | ||
Возвращает элементарное значение заданного объекта. | Object |
Константа | Определено | ||
---|---|---|---|
SEARCH_FUNTION : String = "searchFunction" [статические]
The FunctionsPanelToolBarEvent.SEARCH_FUNTION constant defines the value of the
type property of the event object for an event that is
dispatched when the agent clicks the Search button of a Functions Panel toolbar
in Expression Builder UI. | FunctionsPanelToolBarEvent | ||
SHOW_LOCAL_FUNCTIONS : String = "showLocalFunctions" [статические]
The FunctionsPanelToolBarEvent.SHOW_LOCAL_FUNCTIONS constant defines the value of the
type property of the event object for an event that is
dispatched when the agent clicks the Show Local Functions toogle button of a Functions Panel toolbar
in Expression Builder UI. | FunctionsPanelToolBarEvent | ||
SHOW_REMOTE_FUNCTIONS : String = "showRemoteFunctions" [статические]
The FunctionsPanelToolBarEvent.SHOW_REMOTE_FUNCTIONS constant defines the value of the
type property of the event object for an event that is
dispatched when the agent clicks the Show Remote Functions toogle button of a Functions Panel toolbar
in Expression Builder UI. | FunctionsPanelToolBarEvent |
functionFamily | свойство |
public var functionFamily:IFunctionFamily
Язык версии: | ActionScript 3.0 |
Версия продукта: | Expression Manager Building Block 10.0 |
Версии среды выполнения: | AIR (unsupported), Flash Player 10.2 |
Reference to search Text
FunctionsPanelToolBarEvent | () | Конструктор |
public function FunctionsPanelToolBarEvent(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.
|
SEARCH_FUNTION | Константа |
public static const SEARCH_FUNTION:String = "searchFunction"
Язык версии: | ActionScript 3.0 |
Версия продукта: | Expression Manager Building Block 10 |
Версии среды выполнения: | AIR (unsupported), Flash Player 10.2 |
The FunctionsPanelToolBarEvent.SEARCH_FUNTION constant defines the value of the type property of the event object for an event that is dispatched when the agent clicks the Search button of a Functions Panel toolbar in Expression Builder UI.
SHOW_LOCAL_FUNCTIONS | Константа |
public static const SHOW_LOCAL_FUNCTIONS:String = "showLocalFunctions"
Язык версии: | ActionScript 3.0 |
Версия продукта: | Expression Manager Building Block 10 |
Версии среды выполнения: | AIR (unsupported), Flash Player 10.2 |
The FunctionsPanelToolBarEvent.SHOW_LOCAL_FUNCTIONS constant defines the value of the type property of the event object for an event that is dispatched when the agent clicks the Show Local Functions toogle button of a Functions Panel toolbar in Expression Builder UI.
SHOW_REMOTE_FUNCTIONS | Константа |
public static const SHOW_REMOTE_FUNCTIONS:String = "showRemoteFunctions"
Язык версии: | ActionScript 3.0 |
Версия продукта: | Expression Manager Building Block 10 |
Версии среды выполнения: | AIR (unsupported), Flash Player 10.2 |
The FunctionsPanelToolBarEvent.SHOW_REMOTE_FUNCTIONS constant defines the value of the type property of the event object for an event that is dispatched when the agent clicks the Show Remote Functions toogle button of a Functions Panel toolbar in Expression Builder UI.
Tue Jun 12 2018, 11:34 AM Z