Paket | spark.utils |
Sınıf | public class LabelUtil |
Miras Alma | LabelUtil Object |
Dil Sürümü: | ActionScript 3.0 |
Ürün Sürümü: | Flex 4 |
Çalışma Zamanı Sürümleri: | Flash Player 10, AIR 1.5 |
Genel Yöntemler
Yöntem | Tanımlayan: | ||
---|---|---|---|
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 | ||
[statik]
A function used by components that support item renderers
to determine the correct text an item renderer should display for a data item. | LabelUtil | ||
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 |
Yöntem Ayrıntısı
itemToLabel | () | yöntem |
public static function itemToLabel(item:Object, labelField:String = null, labelFunction:Function = null):String
Dil Sürümü: | ActionScript 3.0 |
Ürün Sürümü: | Flex 4 |
Çalışma Zamanı Sürümleri: | Flash Player 10, AIR 1.5 |
A function used by components that support item renderers
to determine the correct text an item renderer should display for a data item.
If no labelField
or labelFunction
parameter
is specified, the toString()
method of the data item
is called to return a String representation of the data item.
The labelFunction
property takes a reference to a function.
The function takes a single argument which is the item in
the data provider and returns a String:
myLabelFunction(item:Object):String
Parametreler
item:Object — The data item. Null items return the empty string.
| |
labelField:String (default = null ) — The field in the data item to return. If labelField is set
to an empty string (""), no field will be considered on the data item
to represent label.
| |
labelFunction:Function (default = null ) — A function that takes the data item
as a single parameter and returns a String.
|
String — A String representation for the data item
|
Tue Jun 12 2018, 01:09 PM Z