Package | com.adobe.solutions.rca.presentation.event |
Classe | public class TemplateEvent |
Héritage | TemplateEvent Event Object |
Version du langage: | ActionScript 3.0 |
Version du produit: | Bloc de création Review, Commenting & Approval 10 |
Versions du moteur d’exécution: | Flash Player 10.2, AIR (unsupported) |
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 | ||
isModified : Boolean
A True value of this Boolean flag indicates that the template has been modified locally. | TemplateEvent | ||
target : Object [lecture seule]
Cible de l’événement. | Event | ||
template : com.adobe.solutions.rca.domain:IReviewTemplate
This property refers to the template on which the operation is performed. | TemplateEvent | ||
type : String [lecture seule]
Type d’événement. | Event |
Méthode | Défini par | ||
---|---|---|---|
The constructor for TemplateEvent class. | TemplateEvent | ||
[override]
Duplicates an instance of an Event subclass. | TemplateEvent | ||
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 | ||
---|---|---|---|
NEW_TEMPLATE_EVENT : String = "newTemplateEvent" [statique]
This value indicates that a new template has been created. | TemplateEvent | ||
TEMPLATE_SAVED_EVENT : String = "templateSavedEvent" [statique]
This value indicates that a template has been saved. | TemplateEvent | ||
TEMPLATE_SELECTED_EVENT : String = "templateSelectedEvent" [statique]
This value indicates that an existing template has been selected. | TemplateEvent | ||
TEMPLATE_WORKFLOW_CANCEL_EVENT : String = "templateWorkflowCancelEvent" [statique]
This value indicates that a template creation workflow has been canceled. | TemplateEvent |
isModified | propriété |
isModified:Boolean
Version du langage: | ActionScript 3.0 |
Version du produit: | Bloc de création Review, Commenting & Approval 10 |
Versions du moteur d’exécution: | Flash Player 10.2, AIR (unsupported) |
A True
value of this Boolean flag indicates that the template has been modified locally.
Implémentation
public function get isModified():Boolean
public function set isModified(value:Boolean):void
template | propriété |
template:com.adobe.solutions.rca.domain:IReviewTemplate
Version du langage: | ActionScript 3.0 |
Version du produit: | Bloc de création Review, Commenting & Approval 10 |
Versions du moteur d’exécution: | Flash Player 10.2, AIR (unsupported) |
This property refers to the template on which the operation is performed.
Implémentation
public function get template():com.adobe.solutions.rca.domain:IReviewTemplate
public function set template(value:com.adobe.solutions.rca.domain:IReviewTemplate):void
TemplateEvent | () | Constructeur |
public function TemplateEvent(type:String, bubbles:Boolean = false, cancelable:Boolean = false)
Version du langage: | ActionScript 3.0 |
Version du produit: | Bloc de création Review, Commenting & Approval 10.0 |
Versions du moteur d’exécution: | 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 | () | méthode |
override public function clone():Event
Version du langage: | ActionScript 3.0 |
Version du produit: | Bloc de création Review, Commenting & Approval 10 |
Versions du moteur d’exécution: | 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 | Constante |
public static const NEW_TEMPLATE_EVENT:String = "newTemplateEvent"
Version du langage: | ActionScript 3.0 |
Version du produit: | Bloc de création Review, Commenting & Approval 10 |
Versions du moteur d’exécution: | Flash Player 10.2, AIR (unsupported) |
This value indicates that a new template has been created.
TEMPLATE_SAVED_EVENT | Constante |
public static const TEMPLATE_SAVED_EVENT:String = "templateSavedEvent"
Version du langage: | ActionScript 3.0 |
Version du produit: | Bloc de création Review, Commenting & Approval 10 |
Versions du moteur d’exécution: | Flash Player 10.2, AIR (unsupported) |
This value indicates that a template has been saved.
TEMPLATE_SELECTED_EVENT | Constante |
public static const TEMPLATE_SELECTED_EVENT:String = "templateSelectedEvent"
Version du langage: | ActionScript 3.0 |
Version du produit: | Bloc de création Review, Commenting & Approval 10 |
Versions du moteur d’exécution: | Flash Player 10.2, AIR (unsupported) |
This value indicates that an existing template has been selected.
TEMPLATE_WORKFLOW_CANCEL_EVENT | Constante |
public static const TEMPLATE_WORKFLOW_CANCEL_EVENT:String = "templateWorkflowCancelEvent"
Version du langage: | ActionScript 3.0 |
Version du produit: | Bloc de création Review, Commenting & Approval 10 |
Versions du moteur d’exécution: | Flash Player 10.2, AIR (unsupported) |
This value indicates that a template creation workflow has been canceled.
Tue Jun 12 2018, 09:30 AM Z