Paket | mx.utils |
Sınıf | public class NameUtil |
Miras Alma | NameUtil Object |
Dil Sürümü: | ActionScript 3.0 |
Ürün Sürümü: | Flex 3 |
Çalışma Zamanı Sürümleri: | Flash Player 9, AIR 1.1 |
NameUtil.createName()
method.
Yöntem | Tanımlayan: | ||
---|---|---|---|
[statik]
Creates a unique name for any Object instance, such as "Button12", by
combining the unqualified class name with an incrementing counter. | NameUtil | ||
[statik]
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 | ||
[statik]
Returns the name of the specified object's class,
such as "Button"
This string does not include the package name. | NameUtil | ||
Bir nesnenin belirli bir özelliğinin tanımlı olup olmadığını gösterir. | Object | ||
Object sınıfının bir örneğinin parametre olarak belirtilen nesnenin prototip zincirinde olup olmadığını gösterir. | Object | ||
Belirtilen özelliğin bulunup bulunmadığını ve numaralandırılabilir olup olmadığını gösterir. | Object | ||
Dinamik bir özelliğin döngü işlemlerinde kullanılabilirliğini ayarlar. | Object | ||
Bu nesnenin, yerel ayara özel kurallara göre biçimlendirilmiş dize temsilini döndürür. | Object | ||
Belirtilen nesnenin dize olarak temsil edilen halini döndürür. | Object | ||
Belirtilen nesnenin temel değerini döndürür. | Object |
createUniqueName | () | yöntem |
public static function createUniqueName(object:Object):String
Dil Sürümü: | ActionScript 3.0 |
Ürün Sürümü: | Flex 3 |
Çalışma Zamanı Sürümleri: | 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.
Parametreler
object:Object — Object requiring a name.
|
String — String containing the unique name.
|
displayObjectToString | () | yöntem |
public static function displayObjectToString(displayObject:DisplayObject):String
Dil Sürümü: | ActionScript 3.0 |
Ürün Sürümü: | Flex 3 |
Çalışma Zamanı Sürümleri: | 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.
Parametreler
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 | () | yöntem |
public static function getUnqualifiedClassName(object:Object):String
Dil Sürümü: | ActionScript 3.0 |
Ürün Sürümü: | Flex 3 |
Çalışma Zamanı Sürümleri: | 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"
.
Parametreler
object:Object — The object.
|
String — The name of the specified object's class.
|
Tue Jun 12 2018, 01:09 PM Z