Package | com.adobe.gravity.utility.events |
Classe | public class AugmentedErrorEvent |
Héritage | AugmentedErrorEvent ErrorEvent TextEvent Event Object |
Version du langage: | ActionScript 3.0 |
Version du produit: | Adobe Digital Enterprise Platform Experience Services - Client Component Framework 10 |
Versions du moteur d’exécution: | AIR 1.1, Flash Player 9 |
Propriétés publiques
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 | ||
error : Error [lecture seule] The original Error object. | AugmentedErrorEvent | ||
errorID : int [lecture seule]
Contient le numéro de référence associé à l’erreur spécifique. | ErrorEvent | ||
eventPhase : uint [lecture seule]
Phase actuelle du flux d’événements. | Event | ||
target : Object [lecture seule]
Cible de l’événement. | Event | ||
text : String
Dans le cas d’un événement textInput, caractère ou suite de caractères entré par l’utilisateur. | TextEvent | ||
type : String [lecture seule]
Type d’événement. | Event |
Méthodes publiques
Méthode | Défini par | ||
---|---|---|---|
Constructor. | AugmentedErrorEvent | ||
[override]
Creates a copy of the ErrorEvent object and sets the value of each property to match that of the original. | AugmentedErrorEvent | ||
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 | ||
[override]
Renvoie une chaîne répertoriant toutes les propriétés de l’objet ErrorEvent. | ErrorEvent | ||
Renvoie la valeur primitive de l’objet spécifié. | Object |
Constantes publiques
Constante | Défini par | ||
---|---|---|---|
ERROR : String = "error" [statique]
The AugmentedErrorEvent.ERROR constant defines the value of the
type property of the event object for an error event. | AugmentedErrorEvent |
Détails de la propriété
error | propriété |
error:Error
[lecture seule] Version du langage: | ActionScript 3.0 |
Version du produit: | Adobe Digital Enterprise Platform Experience Services - Client Component Framework 10 |
Versions du moteur d’exécution: | AIR 1.1, Flash Player 9 |
The original Error object.
Implémentation
public function get error():Error
Détails du constructeur
AugmentedErrorEvent | () | Constructeur |
public function AugmentedErrorEvent(error:Error, type:String = "error", bubbles:Boolean = false)
Version du langage: | ActionScript 3.0 |
Version du produit: | Adobe Digital Enterprise Platform Experience Services - Client Component Framework 10 |
Versions du moteur d’exécution: | AIR 1.1, Flash Player 9 |
Constructor.
Paramètreserror:Error — The original Error object. Must not be null.
| |
type:String (default = "error ") — The event type; generally the default type of "error" should be preferred, so that all errors can be caught without resorting to adding many handlers.
| |
bubbles:Boolean (default = false ) — Determines whether the Event object participates in the bubbling stage of the event flow. The default value is false.
|
Détails de la méthode
clone | () | méthode |
override public function clone():Event
Version du langage: | ActionScript 3.0 |
Version du produit: | Adobe Digital Enterprise Platform Experience Services - Client Component Framework 10 |
Versions du moteur d’exécution: | AIR 1.1, Flash Player 9 |
Creates a copy of the ErrorEvent object and sets the value of each property to match that of the original.
Valeur renvoyéeEvent — A new ErrorEvent object with property values that match those of the original.
|
Détails de la constante
ERROR | Constante |
public static const ERROR:String = "error"
Version du langage: | ActionScript 3.0 |
Version du produit: | Adobe Digital Enterprise Platform Experience Services - Client Component Framework 10 |
Versions du moteur d’exécution: | AIR 1.1, Flash Player 9 |
The AugmentedErrorEvent.ERROR
constant defines the value of the
type
property of the event object for an error
event.
The properties of the event object have the following values:
Property | Value |
---|---|
bubbles | false |
cancelable | false |
currentTarget | The Object that defines the
event listener that handles the event. For example, if you use
myButton.addEventListener() to register an event listener,
myButton is the value of the currentTarget . |
error | The Error object associated with this event. |
target | The Object that dispatched the event;
it is not always the Object listening for the event.
Use the currentTarget property to always access the
Object listening for the event. |
Tue Jun 12 2018, 09:30 AM Z