Pacchetto | mx.utils |
Classe | public class NameUtil |
Ereditarietà | NameUtil Object |
Versione linguaggio: | ActionScript 3.0 |
Versione prodotto: | Flex 3 |
Versioni runtime: | Flash Player 9, AIR 1.1 |
NameUtil.createName()
method.
Metodo | Definito da | ||
---|---|---|---|
[statico]
Creates a unique name for any Object instance, such as "Button12", by
combining the unqualified class name with an incrementing counter. | NameUtil | ||
[statico]
Returns a string, such as
"MyApplication0.addressForm.lastName.TextField17",
for a DisplayObject object that indicates its position in the
hierarchy of DisplayObject objects in an application. | NameUtil | ||
[statico]
Returns the name of the specified object's class,
such as "Button"
This string does not include the package name. | NameUtil | ||
Indica se per un oggetto è definita una proprietà specifica. | Object | ||
Indica se un'istanza della classe Object si trova nella catena di prototipi dell'oggetto specificato come parametro. | Object | ||
Indica se la proprietà specificata esiste ed è enumerabile. | Object | ||
Imposta la disponibilità di una proprietà dinamica per le operazioni cicliche. | Object | ||
Restituisce la rappresentazione in formato stringa di questo oggetto, formattato in base alle convenzioni specifiche per le versioni localizzate. | Object | ||
Restituisce la rappresentazione in formato stringa dell'oggetto specificato. | Object | ||
Restituisce il valore di base dell'oggetto specificato. | Object |
createUniqueName | () | metodo |
public static function createUniqueName(object:Object):String
Versione linguaggio: | ActionScript 3.0 |
Versione prodotto: | Flex 3 |
Versioni runtime: | Flash Player 9, AIR 1.1 |
Creates a unique name for any Object instance, such as "Button12", by combining the unqualified class name with an incrementing counter.
Parametri
object:Object — Object requiring a name.
|
String — String containing the unique name.
|
displayObjectToString | () | metodo |
public static function displayObjectToString(displayObject:DisplayObject):String
Versione linguaggio: | ActionScript 3.0 |
Versione prodotto: | Flex 3 |
Versioni runtime: | Flash Player 9, AIR 1.1 |
Returns a string, such as "MyApplication0.addressForm.lastName.TextField17", for a DisplayObject object that indicates its position in the hierarchy of DisplayObject objects in an application.
Parametri
displayObject:DisplayObject — A DisplayObject object whose hierarchy in the application
is desired.
|
String — String containing the position of displayObject
in the hierarchy of DisplayObject objects in an application.
|
getUnqualifiedClassName | () | metodo |
public static function getUnqualifiedClassName(object:Object):String
Versione linguaggio: | ActionScript 3.0 |
Versione prodotto: | Flex 3 |
Versioni runtime: | Flash Player 9, AIR 1.1 |
Returns the name of the specified object's class,
such as "Button"
This string does not include the package name.
If you need the package name as well, call the
getQualifiedClassName()
method in the flash.utils package.
It will return a string such as "mx.controls::Button"
.
Parametri
object:Object — The object.
|
String — The name of the specified object's class.
|
Tue Jun 12 2018, 02:44 PM Z