| Package | com.bourre.events |
| Class | public class ValueObjectEvent |
| Inheritance | ValueObjectEvent BasicEvent flash.events.Event |
| Subclasses | PluginEvent |
| Player version: | Flash Player 9.0 |
| Language version: | ActionScript 3.0 |
See also
| Property | Defined by | ||
|---|---|---|---|
| _o : ValueObject | ValueObjectEvent | ||
![]() | _oTarget : Object
The source object of this event, redefined to provide write access
| BasicEvent | |
![]() | _sType : String
The type of the event, redefined to provide write access
| BasicEvent | |
| Method | Defined by | ||
|---|---|---|---|
|
ValueObjectEvent(type:String, target:Object = null, obj:ValueObject = null)
Creates a new
ValueObjectEvent object. | ValueObjectEvent | ||
|
clone():Event
Clone the event
| ValueObjectEvent | ||
![]() |
getTarget():Object
Returns the current source of this event object.
| BasicEvent | |
![]() |
getType():String
Returns the type of this event, which generally correspond
to the name of the called function on the listener.
| BasicEvent | |
|
Returns the value object carried by this event.
| ValueObjectEvent | ||
![]() |
setTarget(oTarget:Object):void
Defines the new source object of this event.
| BasicEvent | |
![]() |
setType(en:String):void
Defines the new event type for this event object.
| BasicEvent | |
![]() |
toString():String
Returns the string representation of this instance.
| BasicEvent | |
| _o | property |
protected var _o:ValueObject
| Player version: | Flash Player 9.0 |
| Language version: | ActionScript 3.0 |
| ValueObjectEvent | () | constructor |
public function ValueObjectEvent(type:String, target:Object = null, obj:ValueObject = null)
| Player version: | Flash Player 9.0 |
| Language version: | ActionScript 3.0 |
Creates a new ValueObjectEvent object.
type:String — name of the event type
|
|
target:Object (default = null) — target of this event
|
|
obj:ValueObject (default = null) — value object carried by this event
|
| clone | () | method |
public override function clone():Event
| Player version: | Flash Player 9.0 |
| Language version: | ActionScript 3.0 |
Clone the event
ReturnsEvent — a clone of the event
|
| getValueObject | () | method |
public function getValueObject():ValueObject
| Player version: | Flash Player 9.0 |
| Language version: | ActionScript 3.0 |
Returns the value object carried by this event.
ReturnsValueObject —
the value object carried by this event.
|