Paket | mx.utils |
Klass | public dynamic class OrderedObject |
Arv | OrderedObject Proxy |
Språkversion: | ActionScript 3.0 |
Produktversion: | Flex 3 |
Körningsmiljöversioner: | Flash Player 9, AIR 1.1 |
Egenskap | Definieras med | ||
---|---|---|---|
propertyList : Array
Contains a list of all of the property names for the proxied object. | OrderedObject |
Metod | Definieras med | ||
---|---|---|---|
OrderedObject(item:Object = null)
Constructor. | OrderedObject |
Metod | Definieras med | ||
---|---|---|---|
[åsidosätt]
Returns the value of the proxied object's method with the specified
name. | OrderedObject | ||
[åsidosätt]
Deletes the specified property on the proxied object. | OrderedObject | ||
[åsidosätt]
Returns the specified property value of the proxied object. | OrderedObject | ||
[åsidosätt]
This is an internal function that must be implemented by a subclass of
flash.utils.Proxy. | OrderedObject | ||
[åsidosätt]
This is an internal function that must be implemented by a subclass of
flash.utils.Proxy. | OrderedObject | ||
[åsidosätt]
This is an internal function that must be implemented by a subclass of
flash.utils.Proxy. | OrderedObject | ||
[åsidosätt]
This is an internal function that must be implemented by a subclass of
flash.utils.Proxy. | OrderedObject | ||
[åsidosätt]
Updates the specified property on the proxied object. | OrderedObject |
propertyList | egenskap |
object_proxy var propertyList:Array
Språkversion: | ActionScript 3.0 |
Produktversion: | Flex 3 |
Körningsmiljöversioner: | Flash Player 9, AIR 1.1 |
Contains a list of all of the property names for the proxied object.
OrderedObject | () | Konstruktor |
callProperty | () | metod |
override flash_proxy function callProperty(name:*, ... rest):*
Språkversion: | ActionScript 3.0 |
Produktversion: | Flex 3 |
Körningsmiljöversioner: | Flash Player 9, AIR 1.1 |
Returns the value of the proxied object's method with the specified name.
Parametrar
name:* — The name of the method being invoked.
| |
... rest — An array specifying the arguments to the called method.
|
* — The return value of the called method.
|
deleteProperty | () | metod |
override flash_proxy function deleteProperty(name:*):Boolean
Språkversion: | ActionScript 3.0 |
Produktversion: | Flex 3 |
Körningsmiljöversioner: | Flash Player 9, AIR 1.1 |
Deletes the specified property on the proxied object.
Parametrar
name:* — Typically a string containing the name of the property,
or possibly a QName where the property name is found by
inspecting the localName property.
|
Boolean — A Boolean indicating if the property was deleted.
|
getProperty | () | metod |
override flash_proxy function getProperty(name:*):*
Språkversion: | ActionScript 3.0 |
Produktversion: | Flex 3 |
Körningsmiljöversioner: | Flash Player 9, AIR 1.1 |
Returns the specified property value of the proxied object.
Parametrar
name:* — Typically a string containing the name of the property, or
possibly a QName where the property name is found by inspecting the
localName property.
|
* — The value of the property.
|
hasProperty | () | metod |
override flash_proxy function hasProperty(name:*):Boolean
Språkversion: | ActionScript 3.0 |
Produktversion: | Flex 3 |
Körningsmiljöversioner: | Flash Player 9, AIR 1.1 |
This is an internal function that must be implemented by a subclass of flash.utils.Proxy.
Parametrar
name:* — The property name that should be tested for existence.
|
Boolean — If the property exists, true ; otherwise
false .
|
Relaterade API-element
nextName | () | metod |
override flash_proxy function nextName(index:int):String
Språkversion: | ActionScript 3.0 |
Produktversion: | Flex 3 |
Körningsmiljöversioner: | Flash Player 9, AIR 1.1 |
This is an internal function that must be implemented by a subclass of flash.utils.Proxy.
Parametrar
index:int — The zero-based index value of the object's property.
|
String — The property's name.
|
Relaterade API-element
nextNameIndex | () | metod |
override flash_proxy function nextNameIndex(index:int):int
Språkversion: | ActionScript 3.0 |
Produktversion: | Flex 3 |
Körningsmiljöversioner: | Flash Player 9, AIR 1.1 |
This is an internal function that must be implemented by a subclass of flash.utils.Proxy.
Parametrar
index:int |
int |
Relaterade API-element
nextValue | () | metod |
override flash_proxy function nextValue(index:int):*
Språkversion: | ActionScript 3.0 |
Produktversion: | Flex 3 |
Körningsmiljöversioner: | Flash Player 9, AIR 1.1 |
This is an internal function that must be implemented by a subclass of flash.utils.Proxy.
Parametrar
index:int — The zero-based index value of the object's property.
|
* — The property's value.
|
Relaterade API-element
setProperty | () | metod |
override flash_proxy function setProperty(name:*, value:*):void
Språkversion: | ActionScript 3.0 |
Produktversion: | Flex 3 |
Körningsmiljöversioner: | Flash Player 9, AIR 1.1 |
Updates the specified property on the proxied object.
Parametrar
name:* — Object containing the name of the property that should be
updated on the proxied object.
| |
value:* — Value that should be set on the proxied object.
|
Tue Jun 12 2018, 01:40 PM Z