Paket | com.adobe.solutions.rca.presentation.event |
Klasse | public class TemplateEvent |
Vererbung | TemplateEvent Event Object |
Sprachversion: | ActionScript 3.0 |
Produktversion: | Baustein „Review, Commenting, and Approval“ 10 |
Laufzeitversionen: | Flash Player 10.2, AIR (unsupported) |
Eigenschaft | Definiert von | ||
---|---|---|---|
bubbles : Boolean [schreibgeschützt]
Gibt an, ob es sich bei dem Ereignis um ein Bubbling-Ereignis handelt. | Event | ||
cancelable : Boolean [schreibgeschützt]
Gibt an, ob das mit dem Ereignis verknüpfte Verhalten verhindert werden kann. | Event | ||
constructor : Object
Ein Verweis auf das Klassenobjekt oder die Konstruktorfunktion für eine angegebene Objektinstanz. | Object | ||
currentTarget : Object [schreibgeschützt]
Das Objekt, welches das Ereignisobjekt aktiv mit einem Ereignis-Listener verarbeitet. | Event | ||
eventPhase : uint [schreibgeschützt]
Die aktuelle Phase im Ereignisablauf. | Event | ||
isModified : Boolean
A True value of this Boolean flag indicates that the template has been modified locally. | TemplateEvent | ||
target : Object [schreibgeschützt]
Das Ereignis-Ziel. | Event | ||
template : com.adobe.solutions.rca.domain:IReviewTemplate
This property refers to the template on which the operation is performed. | TemplateEvent | ||
type : String [schreibgeschützt]
Der Ereignistyp. | Event |
Methode | Definiert von | ||
---|---|---|---|
The constructor for TemplateEvent class. | TemplateEvent | ||
[override]
Duplicates an instance of an Event subclass. | TemplateEvent | ||
Eine Dienstprogrammfunktion zur Implementierung der toString()-Methode in benutzerdefinierten ActionScript 3.0 Event-Klassen. | Event | ||
Gibt an, ob für ein Objekt eine bestimmte Eigenschaft definiert wurde. | Object | ||
Überprüft, ob die preventDefault()-Methode bei dem Ereignis aufgerufen wurde. | Event | ||
Gibt an, ob eine Instanz der Object-Klasse in der Prototypkette des Objekts vorhanden ist, das als Parameter angegeben wurde. | Object | ||
Bricht das Standardverhalten eines Ereignisses ab, wenn dieses Verhalten abgebrochen werden kann. | Event | ||
Gibt an, ob die angegebene Eigenschaft vorhanden ist und durchlaufen werden kann. | Object | ||
Legt die Verfügbarkeit einer dynamischen Eigenschaft für Schleifenoperationen fest. | Object | ||
Verhindert die Verarbeitung von Ereignis-Listenern im aktuellen Knoten und in Knoten, die dem aktuellen Knoten im Ereignisablauf nachfolgen. | Event | ||
Verhindert die Verarbeitung von Ereignis-Listenern in Knoten, die dem aktuellen Knoten im Ereignisablauf nachfolgen. | Event | ||
Gibt die Stringdarstellung dieses Objekts zurück, formatiert entsprechend den Konventionen des Gebietsschemas. | Object | ||
Gibt eine Zeichenfolge zurück, die alle Eigenschaften des Ereignisobjekts enthält. | Event | ||
Gibt den Grundwert des angegebenen Objekts zurück. | Object |
Konstante | Definiert von | ||
---|---|---|---|
NEW_TEMPLATE_EVENT : String = "newTemplateEvent" [statisch]
This value indicates that a new template has been created. | TemplateEvent | ||
TEMPLATE_SAVED_EVENT : String = "templateSavedEvent" [statisch]
This value indicates that a template has been saved. | TemplateEvent | ||
TEMPLATE_SELECTED_EVENT : String = "templateSelectedEvent" [statisch]
This value indicates that an existing template has been selected. | TemplateEvent | ||
TEMPLATE_WORKFLOW_CANCEL_EVENT : String = "templateWorkflowCancelEvent" [statisch]
This value indicates that a template creation workflow has been canceled. | TemplateEvent |
isModified | Eigenschaft |
isModified:Boolean
Sprachversion: | ActionScript 3.0 |
Produktversion: | Baustein „Review, Commenting, and Approval“ 10 |
Laufzeitversionen: | Flash Player 10.2, AIR (unsupported) |
A True
value of this Boolean flag indicates that the template has been modified locally.
Implementierung
public function get isModified():Boolean
public function set isModified(value:Boolean):void
template | Eigenschaft |
template:com.adobe.solutions.rca.domain:IReviewTemplate
Sprachversion: | ActionScript 3.0 |
Produktversion: | Baustein „Review, Commenting, and Approval“ 10 |
Laufzeitversionen: | Flash Player 10.2, AIR (unsupported) |
This property refers to the template on which the operation is performed.
Implementierung
public function get template():com.adobe.solutions.rca.domain:IReviewTemplate
public function set template(value:com.adobe.solutions.rca.domain:IReviewTemplate):void
TemplateEvent | () | Konstruktor |
public function TemplateEvent(type:String, bubbles:Boolean = false, cancelable:Boolean = false)
Sprachversion: | ActionScript 3.0 |
Produktversion: | Baustein „Review, Commenting, and Approval“ 10.0 |
Laufzeitversionen: | 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 | () | Methode |
override public function clone():Event
Sprachversion: | ActionScript 3.0 |
Produktversion: | Baustein „Review, Commenting, and Approval“ 10 |
Laufzeitversionen: | 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 | Konstante |
public static const NEW_TEMPLATE_EVENT:String = "newTemplateEvent"
Sprachversion: | ActionScript 3.0 |
Produktversion: | Baustein „Review, Commenting, and Approval“ 10 |
Laufzeitversionen: | Flash Player 10.2, AIR (unsupported) |
This value indicates that a new template has been created.
TEMPLATE_SAVED_EVENT | Konstante |
public static const TEMPLATE_SAVED_EVENT:String = "templateSavedEvent"
Sprachversion: | ActionScript 3.0 |
Produktversion: | Baustein „Review, Commenting, and Approval“ 10 |
Laufzeitversionen: | Flash Player 10.2, AIR (unsupported) |
This value indicates that a template has been saved.
TEMPLATE_SELECTED_EVENT | Konstante |
public static const TEMPLATE_SELECTED_EVENT:String = "templateSelectedEvent"
Sprachversion: | ActionScript 3.0 |
Produktversion: | Baustein „Review, Commenting, and Approval“ 10 |
Laufzeitversionen: | Flash Player 10.2, AIR (unsupported) |
This value indicates that an existing template has been selected.
TEMPLATE_WORKFLOW_CANCEL_EVENT | Konstante |
public static const TEMPLATE_WORKFLOW_CANCEL_EVENT:String = "templateWorkflowCancelEvent"
Sprachversion: | ActionScript 3.0 |
Produktversion: | Baustein „Review, Commenting, and Approval“ 10 |
Laufzeitversionen: | Flash Player 10.2, AIR (unsupported) |
This value indicates that a template creation workflow has been canceled.
Tue Jun 12 2018, 10:04 AM Z