Pacote | mx.utils |
Classe | public class NameUtil |
Herança | NameUtil Object |
Versão da linguagem: | ActionScript 3.0 |
Versão de produto: | Flex 3 |
Versões de runtime: | Flash Player 9, AIR 1.1 |
NameUtil.createName()
method.
Método | Definido por | ||
---|---|---|---|
[estático]
Creates a unique name for any Object instance, such as "Button12", by
combining the unqualified class name with an incrementing counter. | NameUtil | ||
[estático]
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 | ||
[estático]
Returns the name of the specified object's class,
such as "Button"
This string does not include the package name. | NameUtil | ||
Indica se um objeto tem uma propriedade especificada definida. | Object | ||
Indica se uma ocorrência da classe Object está na cadeia de protótipos do objeto especificado como o parâmetro. | Object | ||
Indica se a propriedade especificada existe e é enumerável. | Object | ||
Define a disponibilidade de uma propriedade dinâmica para operações de repetição. | Object | ||
Retorna a representação da string deste objeto, formatado segundo as convenções específicas para a localidade. | Object | ||
Retorna a representação de string do objeto especificado. | Object | ||
Retorna o valor primitivo do objeto especificado. | Object |
createUniqueName | () | método |
public static function createUniqueName(object:Object):String
Versão da linguagem: | ActionScript 3.0 |
Versão de produto: | Flex 3 |
Versões de 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.
Parâmetros
object:Object — Object requiring a name.
|
String — String containing the unique name.
|
displayObjectToString | () | método |
public static function displayObjectToString(displayObject:DisplayObject):String
Versão da linguagem: | ActionScript 3.0 |
Versão de produto: | Flex 3 |
Versões de 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.
Parâmetros
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 | () | método |
public static function getUnqualifiedClassName(object:Object):String
Versão da linguagem: | ActionScript 3.0 |
Versão de produto: | Flex 3 |
Versões de 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"
.
Parâmetros
object:Object — The object.
|
String — The name of the specified object's class.
|
Wed Jun 13 2018, 11:10 AM Z