Paket | mx.utils |
Sınıf | public class ArrayUtil |
Miras Alma | ArrayUtil 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 |
ArrayUtil.toArray()
method.
Genel Yöntemler
Yöntem | Tanımlayan: | ||
---|---|---|---|
[statik]
Returns the index of the item in the Array. | ArrayUtil | ||
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 | ||
[statik]
Ensures that an Object can be used as an Array. | ArrayUtil | ||
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 |
Yöntem Ayrıntısı
getItemIndex | () | yöntem |
public static function getItemIndex(item:Object, source:Array):int
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 index of the item in the Array.
Parametreler
item:Object — The item to find in the Array.
| |
source:Array — The Array to search for the item.
|
int — The index of the item, and -1 if the item is not in the list.
|
toArray | () | yöntem |
public static function toArray(obj:Object):Array
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 |
Ensures that an Object can be used as an Array.
If the Object is already an Array, it returns the object. If the object is not an Array, it returns an Array in which the only element is the Object. As a special case, if the Object is null, it returns an empty Array.
Parametreler
obj:Object — Object that you want to ensure is an array.
|
Array — An Array. If the original Object is already an Array,
the original Array is returned. Otherwise, a new Array whose
only element is the Object is returned or an empty Array if
the Object was null.
|
Tue Jun 12 2018, 01:09 PM Z