Pakket | com.adobe.solutions.exm.authoring.events |
Klasse | public class FunctionsPanelToolBarEvent |
Overerving | FunctionsPanelToolBarEvent Event Object |
Taalversie: | ActionScript 3.0 |
Productversie: | Expression Manager Building Block 10 |
Runtimeversies: | AIR (unsupported), Flash Player 10.2 |
Eigenschap | Gedefinieerd door | ||
---|---|---|---|
bubbles : Boolean [alleen-lezen]
Geeft aan of een gebeurtenis een terugkoppelgebeurtenis is. | Event | ||
cancelable : Boolean [alleen-lezen]
Geeft aan of het gedrag dat aan deze gebeurtenis is gekoppeld, kan worden voorkomen. | Event | ||
constructor : Object
Verwijzing naar het klasseobject of de constructorfunctie van een bepaalde objectinstantie. | Object | ||
currentTarget : Object [alleen-lezen]
Het object dat het gebeurtenisobject actief verwerkt met een gebeurtenislistener. | Event | ||
eventPhase : uint [alleen-lezen]
De huidige fase in de gebeurtenisstroom. | Event | ||
functionFamily : IFunctionFamily
Reference to search Text
| FunctionsPanelToolBarEvent | ||
target : Object [alleen-lezen]
Doel van gebeurtenis. | Event | ||
type : String [alleen-lezen]
Het type gebeurtenis. | Event |
Methode | Gedefinieerd door | ||
---|---|---|---|
Constructor. | FunctionsPanelToolBarEvent | ||
[overschrijven]
Duplicates an instance of an Event subclass. | FunctionsPanelToolBarEvent | ||
Een hulpprogrammafunctie voor de implementatie van de methode toString() in aangepaste ActionScript 3.0-Event-klassen. | Event | ||
Geeft aan of voor een object een opgegeven eigenschap is gedefinieerd. | Object | ||
Controleert of de methode preventDefault() is aangeroepen voor de gebeurtenis. | Event | ||
Geeft aan of een instantie van de klasse Object zich in de prototypeketen van het object bevindt dat als parameter is opgegeven. | Object | ||
Annuleert het standaardgedrag van een gebeurtenis wanneer dat gedrag kan worden geannuleerd. | Event | ||
Geeft aan of de opgegeven eigenschap bestaat en kan worden opgesomd. | Object | ||
Stelt de beschikbaarheid van een dynamische eigenschap voor lusbewerkingen in. | Object | ||
Voorkomt het verwerken van gebeurtenislisteners in het huidige knooppunt en volgende knooppunten in de gebeurtenisstroom. | Event | ||
Voorkomt het verwerken van gebeurtenislisteners in knooppunten die volgen op het huidige knooppunt in de gebeurtenisstroom. | Event | ||
Geeft de tekenreeksweergave van dit object weer, geformatteerd volgens de locatiespecifieke conventies. | Object | ||
Retourneert een tekenreeks die alle eigenschappen van het Event-object bevat. | Event | ||
Retourneert de primitieve waarde van het opgegeven object. | Object |
Constante | Gedefinieerd door | ||
---|---|---|---|
SEARCH_FUNTION : String = "searchFunction" [statisch]
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" [statisch]
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" [statisch]
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 | eigenschap |
public var functionFamily:IFunctionFamily
Taalversie: | ActionScript 3.0 |
Productversie: | Expression Manager Building Block 10.0 |
Runtimeversies: | AIR (unsupported), Flash Player 10.2 |
Reference to search Text
FunctionsPanelToolBarEvent | () | Constructor |
public function FunctionsPanelToolBarEvent(type:String, bubbles:Boolean = false, cancelable:Boolean = false)
Taalversie: | ActionScript 3.0 |
Productversie: | Expression Manager Building Block 10.0 |
Runtimeversies: | AIR (unsupported), Flash Player 10.2 |
Constructor.
Parameterstype:String | |
bubbles:Boolean (default = false )
| |
cancelable:Boolean (default = false )
|
clone | () | methode |
override public function clone():Event
Taalversie: | ActionScript 3.0 |
Productversie: | Expression Manager Building Block 10 |
Runtimeversies: | 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 | Constante |
public static const SEARCH_FUNTION:String = "searchFunction"
Taalversie: | ActionScript 3.0 |
Productversie: | Expression Manager Building Block 10 |
Runtimeversies: | 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 | Constante |
public static const SHOW_LOCAL_FUNCTIONS:String = "showLocalFunctions"
Taalversie: | ActionScript 3.0 |
Productversie: | Expression Manager Building Block 10 |
Runtimeversies: | 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 | Constante |
public static const SHOW_REMOTE_FUNCTIONS:String = "showRemoteFunctions"
Taalversie: | ActionScript 3.0 |
Productversie: | Expression Manager Building Block 10 |
Runtimeversies: | 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.
Wed Jun 13 2018, 11:42 AM Z