(Beta)
Package | lc.foundation.events |
Class | public class PropertyLoadEvent |
Inheritance | PropertyLoadEvent Event Object |
Language Version: | ActionScript 3.0 |
Product Version: | Adobe Digital Enterprise Platform Experience Services - Document Services ES2 |
Runtime Versions: | AIR 1.0, Flash Player 9, Flash Player 10 |
PropertyLoadEvent
event is dispatched when a property is
loaded. Some properties are not loaded until an explicit load method is called,
such as calling the loadEndpoints()
method from the Category
to load the endpoints for a category.
The PropertyLoadEvent
event is passed to event listeners to indicate
that this property has been successfully loaded when the load operation has
successfully completed.
Related API Elements
Public Properties
Property | Defined By | ||
---|---|---|---|
bubbles : Boolean [read-only]
Indicates whether an event is a bubbling event. | Event | ||
cancelable : Boolean [read-only]
Indicates whether the behavior associated with the event can be prevented. | Event | ||
constructor : Object
A reference to the class object or constructor function for a given object instance. | Object | ||
currentTarget : Object [read-only]
The object that is actively processing the Event object with an event listener. | Event | ||
eventPhase : uint [read-only]
The current phase in the event flow. | Event | ||
isPropertyCached : Boolean
The flag indicates whether the property is cached. | PropertyLoadEvent | ||
propertyName : String
The property name of the event. | PropertyLoadEvent | ||
source : Object
The source of the event. | PropertyLoadEvent | ||
target : Object [read-only]
The event target. | Event | ||
type : String [read-only]
The type of event. | Event |
Public Methods
Method | Defined By | ||
---|---|---|---|
PropertyLoadEvent(source:Object, propertyName:String, isPropertyCached:Boolean = false, type:String, bubbles:Boolean = false, cancelable:Boolean = false)
Constructor. | PropertyLoadEvent | ||
[override]
Creates a copy of a PropertyLoadEvent object
and sets the value of each property to match that of the original. | PropertyLoadEvent | ||
A utility function for implementing the toString() method in custom
ActionScript 3.0 Event classes. | Event | ||
Indicates whether an object has a specified property defined. | Object | ||
Checks whether the preventDefault() method has been called on the event. | Event | ||
Indicates whether an instance of the Object class is in the prototype chain of the object specified
as the parameter. | Object | ||
Cancels an event's default behavior if that behavior can be canceled. | Event | ||
Indicates whether the specified property exists and is enumerable. | Object | ||
Sets the availability of a dynamic property for loop operations. | Object | ||
Prevents processing of any event listeners in the current node and any subsequent nodes in
the event flow. | Event | ||
Prevents processing of any event listeners in nodes subsequent to the current node in the
event flow. | Event | ||
Returns the string representation of this object, formatted according to locale-specific conventions. | Object | ||
Returns a string containing all the properties of the Event object. | Event | ||
Returns the primitive value of the specified object. | Object |
Public Constants
Constant | Defined By | ||
---|---|---|---|
PROPERTY_LOAD : String = "propertyLoad" [static]
A special value that specifies that the properties were loaded. | PropertyLoadEvent |
Property Detail
isPropertyCached | property |
public var isPropertyCached:Boolean
Language Version: | ActionScript 3.0 |
Product Version: | Adobe Digital Enterprise Platform Experience Services - Document Services ES2 |
Runtime Versions: | AIR 1.0, Flash Player 9, Flash Player 10 |
The flag indicates whether the property is cached. A value of true
indicates that the property is cached.
propertyName | property |
public var propertyName:String
Language Version: | ActionScript 3.0 |
Product Version: | Adobe Digital Enterprise Platform Experience Services - Document Services ES2 |
Runtime Versions: | AIR 1.0, Flash Player 9, Flash Player 10 |
The property name of the event.
source | property |
public var source:Object
Language Version: | ActionScript 3.0 |
Product Version: | Adobe Digital Enterprise Platform Experience Services - Document Services ES2 |
Runtime Versions: | AIR 1.0, Flash Player 9, Flash Player 10 |
The source of the event.
Constructor Detail
PropertyLoadEvent | () | Constructor |
public function PropertyLoadEvent(source:Object, propertyName:String, isPropertyCached:Boolean = false, type:String, bubbles:Boolean = false, cancelable:Boolean = false)
Language Version: | ActionScript 3.0 |
Product Version: | Adobe Digital Enterprise Platform Experience Services - Document Services ES2 |
Runtime Versions: | AIR 1.0, Flash Player 9, Flash Player 10 |
Constructor.
Parameterssource:Object — Specifies the source of the event.
| |
propertyName:String — Specifies the property name of the event.
| |
isPropertyCached:Boolean (default = false ) — Specifies whether the property is cached.
| |
type:String (default = NaN ) — Specifies whether the event object participates in the bubbling stage of the event flow.
| |
bubbles:Boolean (default = false ) — Specifies whether the event object can be canceled.
| |
cancelable:Boolean (default = false )
|
Method Detail
clone | () | method |
override public function clone():Event
Language Version: | ActionScript 3.0 |
Product Version: | Adobe Digital Enterprise Platform Experience Services - Document Services ES2 |
Runtime Versions: | AIR 1.0, Flash Player 9, Flash Player 10 |
Creates a copy of a PropertyLoadEvent
object
and sets the value of each property to match that of the original.
Event — A copy of the PropertyLoadEvent object.
|
Constant Detail
PROPERTY_LOAD | Constant |
public static const PROPERTY_LOAD:String = "propertyLoad"
Language Version: | ActionScript 3.0 |
Product Version: | Adobe Digital Enterprise Platform Experience Services - Document Services ES2 |
Runtime Versions: | AIR 1.0, Flash Player 9, Flash Player 10 |
A special value that specifies that the properties were loaded.
Wed Nov 21 2018, 06:34 AM -08:00