패키지 | spark.components |
인터페이스 | public interface IItemRendererOwner |
구현자 | DataGroup, SkinnableDataContainer |
언어 버전: | ActionScript 3.0 |
제품 버전: | Flex 4 |
런타임 버전: | Flash Player 10, AIR 1.5 |
The class defining the item renderer must implement the IItemRenderer interface.
관련 API 요소
공용 메서드
메서드 | 정의 주체 | ||
---|---|---|---|
Returns the String for display in an item renderer. | IItemRendererOwner | ||
Updates the renderer for reuse. | IItemRendererOwner |
메서드 세부 정보
itemToLabel | () | 메서드 |
public function itemToLabel(item:Object):String
언어 버전: | ActionScript 3.0 |
제품 버전: | Flex 4 |
런타임 버전: | Flash Player 10, AIR 1.5 |
Returns the String for display in an item renderer.
The String is written to the labelText
property of the item renderer.
매개 변수
item:Object — The data item to display.
|
String — The String for display in an item renderer.
|
updateRenderer | () | 메서드 |
public function updateRenderer(renderer:IVisualElement, itemIndex:int, data:Object):void
언어 버전: | ActionScript 3.0 |
제품 버전: | Flex 4 |
런타임 버전: | Flash Player 10, AIR 1.5 |
Updates the renderer for reuse. This method first prepares the item renderer for reuse by cleaning out any stale properties as well as updating it with new properties.
The last thing this method should do is set the data
property
of the item renderer.
매개 변수
renderer:IVisualElement — The item renderer.
| |
itemIndex:int — The index of the data in the data provider.
| |
data:Object — The data object this item renderer is representing.
|
Tue Jun 12 2018, 03:17 PM Z