| Pacchetto | mx.utils |
| Classe | public dynamic class OrderedObject |
| Ereditarietà | OrderedObject Proxy |
| Versione linguaggio: | ActionScript 3.0 |
| Versione prodotto: | Flex 3 |
| Versioni runtime: | Flash Player 9, AIR 1.1 |
| Proprietà | Definito da | ||
|---|---|---|---|
| propertyList : Array
Contains a list of all of the property names for the proxied object. | OrderedObject | ||
| Metodo | Definito da | ||
|---|---|---|---|
OrderedObject(item:Object = null)
Constructor. | OrderedObject | ||
| Metodo | Definito da | ||
|---|---|---|---|
[override]
Returns the value of the proxied object's method with the specified
name. | OrderedObject | ||
[override]
Deletes the specified property on the proxied object. | OrderedObject | ||
[override]
Returns the specified property value of the proxied object. | OrderedObject | ||
[override]
This is an internal function that must be implemented by a subclass of
flash.utils.Proxy. | OrderedObject | ||
[override]
This is an internal function that must be implemented by a subclass of
flash.utils.Proxy. | OrderedObject | ||
[override]
This is an internal function that must be implemented by a subclass of
flash.utils.Proxy. | OrderedObject | ||
[override]
This is an internal function that must be implemented by a subclass of
flash.utils.Proxy. | OrderedObject | ||
[override]
Updates the specified property on the proxied object. | OrderedObject | ||
propertyList | proprietà |
object_proxy var propertyList:Array| Versione linguaggio: | ActionScript 3.0 |
| Versione prodotto: | Flex 3 |
| Versioni runtime: | Flash Player 9, AIR 1.1 |
Contains a list of all of the property names for the proxied object.
OrderedObject | () | Funzione di costruzione |
callProperty | () | metodo |
override flash_proxy function callProperty(name:*, ... rest):*| Versione linguaggio: | ActionScript 3.0 |
| Versione prodotto: | Flex 3 |
| Versioni runtime: | Flash Player 9, AIR 1.1 |
Returns the value of the proxied object's method with the specified name.
Parametri
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 | () | metodo |
override flash_proxy function deleteProperty(name:*):Boolean| Versione linguaggio: | ActionScript 3.0 |
| Versione prodotto: | Flex 3 |
| Versioni runtime: | Flash Player 9, AIR 1.1 |
Deletes the specified property on the proxied object.
Parametri
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 | () | metodo |
override flash_proxy function getProperty(name:*):*| Versione linguaggio: | ActionScript 3.0 |
| Versione prodotto: | Flex 3 |
| Versioni runtime: | Flash Player 9, AIR 1.1 |
Returns the specified property value of the proxied object.
Parametri
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 | () | metodo |
override flash_proxy function hasProperty(name:*):Boolean| Versione linguaggio: | ActionScript 3.0 |
| Versione prodotto: | Flex 3 |
| Versioni runtime: | Flash Player 9, AIR 1.1 |
This is an internal function that must be implemented by a subclass of flash.utils.Proxy.
Parametri
name:* — The property name that should be tested for existence.
|
Boolean — If the property exists, true; otherwise
false.
|
Elementi API correlati
nextName | () | metodo |
override flash_proxy function nextName(index:int):String| Versione linguaggio: | ActionScript 3.0 |
| Versione prodotto: | Flex 3 |
| Versioni runtime: | Flash Player 9, AIR 1.1 |
This is an internal function that must be implemented by a subclass of flash.utils.Proxy.
Parametri
index:int — The zero-based index value of the object's property.
|
String — The property's name.
|
Elementi API correlati
nextNameIndex | () | metodo |
override flash_proxy function nextNameIndex(index:int):int| Versione linguaggio: | ActionScript 3.0 |
| Versione prodotto: | Flex 3 |
| Versioni runtime: | Flash Player 9, AIR 1.1 |
This is an internal function that must be implemented by a subclass of flash.utils.Proxy.
Parametri
index:int |
int |
Elementi API correlati
nextValue | () | metodo |
override flash_proxy function nextValue(index:int):*| Versione linguaggio: | ActionScript 3.0 |
| Versione prodotto: | Flex 3 |
| Versioni runtime: | Flash Player 9, AIR 1.1 |
This is an internal function that must be implemented by a subclass of flash.utils.Proxy.
Parametri
index:int — The zero-based index value of the object's property.
|
* — The property's value.
|
Elementi API correlati
setProperty | () | metodo |
override flash_proxy function setProperty(name:*, value:*):void| Versione linguaggio: | ActionScript 3.0 |
| Versione prodotto: | Flex 3 |
| Versioni runtime: | Flash Player 9, AIR 1.1 |
Updates the specified property on the proxied object.
Parametri
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, 02:44 PM Z