Pacchetto | com.adobe.solutions.rca.presentation.event |
Classe | public class TemplateEvent |
Ereditarietà | TemplateEvent Event Object |
Versione linguaggio: | ActionScript 3.0 |
Versione prodotto: | Blocco costitutivo Review, Commenting, and Approval 10 |
Versioni runtime: | Flash Player 10.2, AIR (unsupported) |
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 | ||
eventPhase : uint [sola lettura]
La fase attuale del flusso di eventi. | Event | ||
isModified : Boolean
A True value of this Boolean flag indicates that the template has been modified locally. | TemplateEvent | ||
target : Object [sola lettura]
Il target dell'evento. | Event | ||
template : com.adobe.solutions.rca.domain:IReviewTemplate
This property refers to the template on which the operation is performed. | TemplateEvent | ||
type : String [sola lettura]
Il tipo di evento. | Event |
Metodo | Definito da | ||
---|---|---|---|
The constructor for TemplateEvent class. | TemplateEvent | ||
[override]
Duplicates an instance of an Event subclass. | TemplateEvent | ||
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 | ||
Restituisce una stringa che contiene tutte le proprietà dell'oggetto Event. | Event | ||
Restituisce il valore di base dell'oggetto specificato. | Object |
Costante | Definito da | ||
---|---|---|---|
NEW_TEMPLATE_EVENT : String = "newTemplateEvent" [statico]
This value indicates that a new template has been created. | TemplateEvent | ||
TEMPLATE_SAVED_EVENT : String = "templateSavedEvent" [statico]
This value indicates that a template has been saved. | TemplateEvent | ||
TEMPLATE_SELECTED_EVENT : String = "templateSelectedEvent" [statico]
This value indicates that an existing template has been selected. | TemplateEvent | ||
TEMPLATE_WORKFLOW_CANCEL_EVENT : String = "templateWorkflowCancelEvent" [statico]
This value indicates that a template creation workflow has been canceled. | TemplateEvent |
isModified | proprietà |
isModified:Boolean
Versione linguaggio: | ActionScript 3.0 |
Versione prodotto: | Blocco costitutivo Review, Commenting, and Approval 10 |
Versioni runtime: | Flash Player 10.2, AIR (unsupported) |
A True
value of this Boolean flag indicates that the template has been modified locally.
Implementazione
public function get isModified():Boolean
public function set isModified(value:Boolean):void
template | proprietà |
template:com.adobe.solutions.rca.domain:IReviewTemplate
Versione linguaggio: | ActionScript 3.0 |
Versione prodotto: | Blocco costitutivo Review, Commenting, and Approval 10 |
Versioni runtime: | Flash Player 10.2, AIR (unsupported) |
This property refers to the template on which the operation is performed.
Implementazione
public function get template():com.adobe.solutions.rca.domain:IReviewTemplate
public function set template(value:com.adobe.solutions.rca.domain:IReviewTemplate):void
TemplateEvent | () | Funzione di costruzione |
public function TemplateEvent(type:String, bubbles:Boolean = false, cancelable:Boolean = false)
Versione linguaggio: | ActionScript 3.0 |
Versione prodotto: | Blocco costitutivo Review, Commenting, and Approval 10.0 |
Versioni runtime: | Flash Player 10.2, AIR (unsupported) |
The constructor for TemplateEvent
class.
type:String — The type of the event, accessible as Event.type.
| |
bubbles:Boolean (default = false ) — Determines whether the Event object participates in the bubbling stage of the event flow. The default value is false.
| |
cancelable:Boolean (default = false ) — Determines whether the Event object can be canceled. The default values is false.
|
clone | () | metodo |
override public function clone():Event
Versione linguaggio: | ActionScript 3.0 |
Versione prodotto: | Blocco costitutivo Review, Commenting, and Approval 10 |
Versioni runtime: | Flash Player 10.2, AIR (unsupported) |
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.
|
NEW_TEMPLATE_EVENT | Costante |
public static const NEW_TEMPLATE_EVENT:String = "newTemplateEvent"
Versione linguaggio: | ActionScript 3.0 |
Versione prodotto: | Blocco costitutivo Review, Commenting, and Approval 10 |
Versioni runtime: | Flash Player 10.2, AIR (unsupported) |
This value indicates that a new template has been created.
TEMPLATE_SAVED_EVENT | Costante |
public static const TEMPLATE_SAVED_EVENT:String = "templateSavedEvent"
Versione linguaggio: | ActionScript 3.0 |
Versione prodotto: | Blocco costitutivo Review, Commenting, and Approval 10 |
Versioni runtime: | Flash Player 10.2, AIR (unsupported) |
This value indicates that a template has been saved.
TEMPLATE_SELECTED_EVENT | Costante |
public static const TEMPLATE_SELECTED_EVENT:String = "templateSelectedEvent"
Versione linguaggio: | ActionScript 3.0 |
Versione prodotto: | Blocco costitutivo Review, Commenting, and Approval 10 |
Versioni runtime: | Flash Player 10.2, AIR (unsupported) |
This value indicates that an existing template has been selected.
TEMPLATE_WORKFLOW_CANCEL_EVENT | Costante |
public static const TEMPLATE_WORKFLOW_CANCEL_EVENT:String = "templateWorkflowCancelEvent"
Versione linguaggio: | ActionScript 3.0 |
Versione prodotto: | Blocco costitutivo Review, Commenting, and Approval 10 |
Versioni runtime: | Flash Player 10.2, AIR (unsupported) |
This value indicates that a template creation workflow has been canceled.
Tue Jun 12 2018, 02:44 PM Z