Pacchetto | com.adobe.gravity.utility.events |
Classe | public class AugmentedErrorEvent |
Ereditarietà | AugmentedErrorEvent ErrorEvent TextEvent Event Object |
Versione linguaggio: | ActionScript 3.0 |
Versione prodotto: | Adobe Digital Enterprise Platform Experience Services - Client Component Framework 10 |
Versioni runtime: | AIR 1.1, Flash Player 9 |
Proprietà pubbliche
Proprietà | Definito da | ||
---|---|---|---|
bubbles : Boolean [sola lettura]
Indica se un evento è un evento di bubbling. | Event | ||
cancelable : Boolean [sola lettura]
Indica se il comportamento associato all'evento può essere impedito. | Event | ||
constructor : Object
Un riferimento all'oggetto classe o alla funzione di costruzione per una determinata istanza di oggetto. | Object | ||
currentTarget : Object [sola lettura]
L'oggetto che elabora attivamente l'oggetto Event con un listener di eventi. | Event | ||
error : Error [sola lettura] The original Error object. | AugmentedErrorEvent | ||
errorID : int [sola lettura]
Contiene il numero di riferimento associato all'errore specifico. | ErrorEvent | ||
eventPhase : uint [sola lettura]
La fase attuale del flusso di eventi. | Event | ||
target : Object [sola lettura]
Il target dell'evento. | Event | ||
text : String
Per un evento textInput, il carattere o la sequenza di caratteri immessi dall'utente. | TextEvent | ||
type : String [sola lettura]
Il tipo di evento. | Event |
Metodi pubblici
Metodo | Definito da | ||
---|---|---|---|
Constructor. | AugmentedErrorEvent | ||
[override]
Creates a copy of the ErrorEvent object and sets the value of each property to match that of the original. | AugmentedErrorEvent | ||
Una funzione dell'utilità per l'implementazione del metodo toString() in classi Event ActionScript 3.0 personalizzate. | Event | ||
Indica se per un oggetto è definita una proprietà specifica. | Object | ||
Verifica se sull'evento è stato chiamato il metodo preventDefault(). | Event | ||
Indica se un'istanza della classe Object si trova nella catena di prototipi dell'oggetto specificato come parametro. | Object | ||
Annulla il comportamento predefinito di un evento se tale comportamento può essere annullato. | Event | ||
Indica se la proprietà specificata esiste ed è enumerabile. | Object | ||
Imposta la disponibilità di una proprietà dinamica per le operazioni cicliche. | Object | ||
Impedisce l'elaborazione di tutti i listener di eventi nel nodo corrente e in tutti i nodi successivi del flusso di eventi. | Event | ||
Impedisce l'elaborazione di tutti i listener di eventi nei nodi del flusso di eventi successivi a quello corrente. | Event | ||
Restituisce la rappresentazione in formato stringa di questo oggetto, formattato in base alle convenzioni specifiche per le versioni localizzate. | Object | ||
[override]
Restituisce una stringa che contiene tutte le proprietà dell'oggetto ErrorEvent. | ErrorEvent | ||
Restituisce il valore di base dell'oggetto specificato. | Object |
Costanti pubbliche
Costante | Definito da | ||
---|---|---|---|
ERROR : String = "error" [statico]
The AugmentedErrorEvent.ERROR constant defines the value of the
type property of the event object for an error event. | AugmentedErrorEvent |
Descrizione delle proprietà
error | proprietà |
Descrizione della funzione di costruzione
AugmentedErrorEvent | () | Funzione di costruzione |
public function AugmentedErrorEvent(error:Error, type:String = "error", bubbles:Boolean = false)
Versione linguaggio: | ActionScript 3.0 |
Versione prodotto: | Adobe Digital Enterprise Platform Experience Services - Client Component Framework 10 |
Versioni runtime: | AIR 1.1, Flash Player 9 |
Constructor.
Parametrierror: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.
|
Descrizione dei metodi
clone | () | metodo |
override public function clone():Event
Versione linguaggio: | ActionScript 3.0 |
Versione prodotto: | Adobe Digital Enterprise Platform Experience Services - Client Component Framework 10 |
Versioni runtime: | 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.
RestituisceEvent — A new ErrorEvent object with property values that match those of the original.
|
Descrizione delle costanti
ERROR | Costante |
public static const ERROR:String = "error"
Versione linguaggio: | ActionScript 3.0 |
Versione prodotto: | Adobe Digital Enterprise Platform Experience Services - Client Component Framework 10 |
Versioni runtime: | 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, 02:44 PM Z