ActionScript® 3.0 Reference for the Adobe® Flash® Platform
Home  |  Show Packages and Classes List |  Packages  |  Classes  |  What's New  |  Index  |  Appendixes
lc.foundation.events 

PropertyLoadEvent  - AS3 ADEP Workspace

Packagelc.foundation.events
Classpublic class PropertyLoadEvent
InheritancePropertyLoadEvent Inheritance Event Inheritance Object

Language Version: ActionScript 3.0
Product Version: Adobe Digital Enterprise Platform Document Services - Workspace 9
Runtime Versions: AIR (unsupported), Flash Player 9, Flash Player 10

A 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 loadStartpoints() method from the Category to load the startpoints 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
 PropertyDefined By
 Inheritedbubbles : Boolean
[read-only] Indicates whether an event is a bubbling event.
Event
 Inheritedcancelable : Boolean
[read-only] Indicates whether the behavior associated with the event can be prevented.
Event
 Inheritedconstructor : Object
A reference to the class object or constructor function for a given object instance.
Object
 InheritedcurrentTarget : Object
[read-only] The object that is actively processing the Event object with an event listener.
Event
 InheritedeventPhase : 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
 Inheritedtarget : Object
[read-only] The event target.
Event
 Inheritedtype : String
[read-only] The type of event.
Event
Public Methods
 MethodDefined 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
 Inherited
formatToString(className:String, ... arguments):String
A utility function for implementing the toString() method in custom ActionScript 3.0 Event classes.
Event
 Inherited
Indicates whether an object has a specified property defined.
Object
 Inherited
Checks whether the preventDefault() method has been called on the event.
Event
 Inherited
Indicates whether an instance of the Object class is in the prototype chain of the object specified as the parameter.
Object
 Inherited
Cancels an event's default behavior if that behavior can be canceled.
Event
 Inherited
Indicates whether the specified property exists and is enumerable.
Object
 Inherited
Sets the availability of a dynamic property for loop operations.
Object
 Inherited
Prevents processing of any event listeners in the current node and any subsequent nodes in the event flow.
Event
 Inherited
Prevents processing of any event listeners in nodes subsequent to the current node in the event flow.
Event
 Inherited
Returns the string representation of this object, formatted according to locale-specific conventions.
Object
 Inherited
Returns a string containing all the properties of the Event object.
Event
 Inherited
Returns the primitive value of the specified object.
Object
Public Constants
 ConstantDefined 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 Document Services - Workspace 9
Runtime Versions: AIR (unsupported), 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 Document Services - Workspace 9
Runtime Versions: AIR (unsupported), 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 Document Services - Workspace 9
Runtime Versions: AIR (unsupported), 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 Document Services - Workspace 9
Runtime Versions: AIR (unsupported), Flash Player 9, Flash Player 10

Constructor.

Parameters
source: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 the type of the event. Defaults to PROPERTY_LOAD,
 
bubbles:Boolean (default = false) — Specifies whether the event object participates in the bubbling stage of the event flow.
 
cancelable:Boolean (default = false) — Specifies whether the event object can be canceled.
Method Detail

clone

()method
override public function clone():Event

Language Version: ActionScript 3.0
Product Version: Adobe Digital Enterprise Platform Document Services - Workspace 9
Runtime Versions: AIR (unsupported), 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.

Returns
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 Document Services - Workspace 9
Runtime Versions: AIR (unsupported), Flash Player 9, Flash Player 10

A special value that specifies that the properties were loaded.