Package | com.adobe.solutions.exm.authoring.events |
Classe | public class ExpressionBuilderEvent |
Héritage | ExpressionBuilderEvent Event Object |
Version du langage: | ActionScript 3.0 |
Version du produit: | Bloc de création Expression Manager 10 |
Versions du moteur d’exécution: | AIR (unsupported), Flash Player 10.2 |
Propriété | Défini par | ||
---|---|---|---|
bubbles : Boolean [lecture seule]
Indique si un événement peut se propager vers le haut (bubbling). | Event | ||
cancelable : Boolean [lecture seule]
Indique si le comportement associé à l’événement peut être évité. | Event | ||
constructor : Object
Référence à l’objet de classe ou à la fonction constructeur d’une occurrence donnée d’un objet. | Object | ||
currentTarget : Object [lecture seule]
L’objet qui traite activement l’objet Event avec un écouteur d’événements. | Event | ||
eventPhase : uint [lecture seule]
Phase actuelle du flux d’événements. | Event | ||
expression : IExpression
Selected Expression
| ExpressionBuilderEvent | ||
target : Object [lecture seule]
Cible de l’événement. | Event | ||
type : String [lecture seule]
Type d’événement. | Event |
Méthode | Défini par | ||
---|---|---|---|
Constructor. | ExpressionBuilderEvent | ||
[override]
Duplicates an instance of an Event subclass. | ExpressionBuilderEvent | ||
Fonction d’un utilitaire permettant d’implémenter la méthode toString() dans des classes Event ActionScript 3.0 personnalisées. | Event | ||
Indique si la propriété spécifiée d’un objet est définie. | Object | ||
Vérifie si la méthode preventDefault() a été appelée pour l’événement. | Event | ||
Indique si une occurrence de la classe Object figure dans la chaîne de prototype de l’objet spécifié en tant que paramètre. | Object | ||
Annule le comportement par défaut d’un événement si cette opération est possible. | Event | ||
Indique si la propriété spécifiée existe et est énumérable. | Object | ||
Définit la disponibilité d’une propriété dynamique pour les opérations en boucle. | Object | ||
Bloque le traitement des écouteurs d’événement dans le nœud actuel et les suivants dans le flux d’événements. | Event | ||
Bloque le traitement des écouteurs d’événement dans les nœuds qui suivent le nœud actuel dans le flux d’événements. | Event | ||
Renvoie la représentation de chaîne de cet objet, formatée selon les paramètres régionaux en vigueur. | Object | ||
Renvoie une chaîne répertoriant toutes les propriétés de l’objet Event. | Event | ||
Renvoie la valeur primitive de l’objet spécifié. | Object |
Constante | Défini par | ||
---|---|---|---|
CANCEL_EXPRESSION : String = "cancelExpression" [statique]
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" [statique]
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" [statique]
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" [statique]
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" [statique]
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 | propriété |
public var expression:IExpression
Version du langage: | ActionScript 3.0 |
Version du produit: | Bloc de création Expression Manager 10.0 |
Versions du moteur d’exécution: | AIR (unsupported), Flash Player 10.2 |
Selected Expression
ExpressionBuilderEvent | () | Constructeur |
public function ExpressionBuilderEvent(type:String, bubbles:Boolean = false, cancelable:Boolean = false)
Version du langage: | ActionScript 3.0 |
Version du produit: | Bloc de création Expression Manager 10.0 |
Versions du moteur d’exécution: | AIR (unsupported), Flash Player 10.2 |
Constructor.
Paramètrestype:String | |
bubbles:Boolean (default = false )
| |
cancelable:Boolean (default = false )
|
clone | () | méthode |
override public function clone():Event
Version du langage: | ActionScript 3.0 |
Version du produit: | Bloc de création Expression Manager 10 |
Versions du moteur d’exécution: | 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 | Constante |
public static const CANCEL_EXPRESSION:String = "cancelExpression"
Version du langage: | ActionScript 3.0 |
Version du produit: | Bloc de création Expression Manager 10 |
Versions du moteur d’exécution: | 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 | Constante |
public static const EXPRESSION_CREATION_COMPLETED:String = "expressionCreationCompleted"
Version du langage: | ActionScript 3.0 |
Version du produit: | Bloc de création Expression Manager 10 |
Versions du moteur d’exécution: | 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 | Constante |
public static const SAVE_EXPRESSION:String = "saveExpression"
Version du langage: | ActionScript 3.0 |
Version du produit: | Bloc de création Expression Manager 10 |
Versions du moteur d’exécution: | 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 | Constante |
public static const UPDATE_EXPRESSION:String = "updateExpression"
Version du langage: | ActionScript 3.0 |
Version du produit: | Bloc de création Expression Manager 10 |
Versions du moteur d’exécution: | 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 | Constante |
public static const VALLIDATE_EXPRESSION:String = "validateExpression"
Version du langage: | ActionScript 3.0 |
Version du produit: | Bloc de création Expression Manager 10 |
Versions du moteur d’exécution: | 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, 09:30 AM Z