Pakket | com.adobe.solutions.rca.presentation.event |
Klasse | public class TemplateEvent |
Overerving | TemplateEvent Event Object |
Taalversie: | ActionScript 3.0 |
Productversie: | Review, Commenting, and Approval Building Block 10 |
Runtimeversies: | Flash Player 10.2, AIR (unsupported) |
Eigenschap | Gedefinieerd door | ||
---|---|---|---|
bubbles : Boolean [alleen-lezen]
Geeft aan of een gebeurtenis een terugkoppelgebeurtenis is. | Event | ||
cancelable : Boolean [alleen-lezen]
Geeft aan of het gedrag dat aan deze gebeurtenis is gekoppeld, kan worden voorkomen. | Event | ||
constructor : Object
Verwijzing naar het klasseobject of de constructorfunctie van een bepaalde objectinstantie. | Object | ||
currentTarget : Object [alleen-lezen]
Het object dat het gebeurtenisobject actief verwerkt met een gebeurtenislistener. | Event | ||
eventPhase : uint [alleen-lezen]
De huidige fase in de gebeurtenisstroom. | Event | ||
isModified : Boolean
A True value of this Boolean flag indicates that the template has been modified locally. | TemplateEvent | ||
target : Object [alleen-lezen]
Doel van gebeurtenis. | Event | ||
template : com.adobe.solutions.rca.domain:IReviewTemplate
This property refers to the template on which the operation is performed. | TemplateEvent | ||
type : String [alleen-lezen]
Het type gebeurtenis. | Event |
Methode | Gedefinieerd door | ||
---|---|---|---|
The constructor for TemplateEvent class. | TemplateEvent | ||
[overschrijven]
Duplicates an instance of an Event subclass. | TemplateEvent | ||
Een hulpprogrammafunctie voor de implementatie van de methode toString() in aangepaste ActionScript 3.0-Event-klassen. | Event | ||
Geeft aan of voor een object een opgegeven eigenschap is gedefinieerd. | Object | ||
Controleert of de methode preventDefault() is aangeroepen voor de gebeurtenis. | Event | ||
Geeft aan of een instantie van de klasse Object zich in de prototypeketen van het object bevindt dat als parameter is opgegeven. | Object | ||
Annuleert het standaardgedrag van een gebeurtenis wanneer dat gedrag kan worden geannuleerd. | Event | ||
Geeft aan of de opgegeven eigenschap bestaat en kan worden opgesomd. | Object | ||
Stelt de beschikbaarheid van een dynamische eigenschap voor lusbewerkingen in. | Object | ||
Voorkomt het verwerken van gebeurtenislisteners in het huidige knooppunt en volgende knooppunten in de gebeurtenisstroom. | Event | ||
Voorkomt het verwerken van gebeurtenislisteners in knooppunten die volgen op het huidige knooppunt in de gebeurtenisstroom. | Event | ||
Geeft de tekenreeksweergave van dit object weer, geformatteerd volgens de locatiespecifieke conventies. | Object | ||
Retourneert een tekenreeks die alle eigenschappen van het Event-object bevat. | Event | ||
Retourneert de primitieve waarde van het opgegeven object. | Object |
Constante | Gedefinieerd door | ||
---|---|---|---|
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 | eigenschap |
isModified:Boolean
Taalversie: | ActionScript 3.0 |
Productversie: | Review, Commenting, and Approval Building Block 10 |
Runtimeversies: | Flash Player 10.2, AIR (unsupported) |
A True
value of this Boolean flag indicates that the template has been modified locally.
Implementatie
public function get isModified():Boolean
public function set isModified(value:Boolean):void
template | eigenschap |
template:com.adobe.solutions.rca.domain:IReviewTemplate
Taalversie: | ActionScript 3.0 |
Productversie: | Review, Commenting, and Approval Building Block 10 |
Runtimeversies: | Flash Player 10.2, AIR (unsupported) |
This property refers to the template on which the operation is performed.
Implementatie
public function get template():com.adobe.solutions.rca.domain:IReviewTemplate
public function set template(value:com.adobe.solutions.rca.domain:IReviewTemplate):void
TemplateEvent | () | Constructor |
public function TemplateEvent(type:String, bubbles:Boolean = false, cancelable:Boolean = false)
Taalversie: | ActionScript 3.0 |
Productversie: | Review, Commenting, and Approval Building Block 10.0 |
Runtimeversies: | 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
Taalversie: | ActionScript 3.0 |
Productversie: | Review, Commenting, and Approval Building Block 10 |
Runtimeversies: | 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"
Taalversie: | ActionScript 3.0 |
Productversie: | Review, Commenting, and Approval Building Block 10 |
Runtimeversies: | 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"
Taalversie: | ActionScript 3.0 |
Productversie: | Review, Commenting, and Approval Building Block 10 |
Runtimeversies: | 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"
Taalversie: | ActionScript 3.0 |
Productversie: | Review, Commenting, and Approval Building Block 10 |
Runtimeversies: | 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"
Taalversie: | ActionScript 3.0 |
Productversie: | Review, Commenting, and Approval Building Block 10 |
Runtimeversies: | Flash Player 10.2, AIR (unsupported) |
This value indicates that a template creation workflow has been canceled.
Wed Jun 13 2018, 11:42 AM Z