| 패키지 | mx.effects | 
| 인터페이스 | public interface IEffectTargetHost | 
| 구현자 | AdvancedListBase, ListBase | 
| 언어 버전: | ActionScript 3.0 | 
| 제품 버전: | Flex 3 | 
| 런타임 버전: | Flash Player 9, AIR 1.1 | 
관련 API 요소
| 메서드 | 정의 주체 | ||
|---|---|---|---|
      Adds an item renderer if a data change effect is running.  | IEffectTargetHost | ||
      Returns true or false 
      to indicates whether the effect should play on the target.  | IEffectTargetHost | ||
      Removes an item renderer if a data change effect is running.  | IEffectTargetHost | ||
      Called by an UnconstrainItemAction effect
      as part of a data change effect if the item renderers corresponding
      to certain data items need to move outside the normal positions
      of item renderers in the control.  | IEffectTargetHost | ||
addDataEffectItem | () | 메서드 | 
 public function addDataEffectItem(target:Object):void| 언어 버전: | ActionScript 3.0 | 
| 제품 버전: | Flex 3 | 
| 런타임 버전: | Flash Player 9, AIR 1.1 | 
Adds an item renderer if a data change effect is running. The item renderer should correspond to a recently added data item in the data provider's collection that isn't yet being displayed.
This function will be called by an AddItemAction
      effect as part of a data change effect to specify the point
      at which a data item added to a collection begins to be displayed
      by the control using an item renderer.
매개 변수
target:Object — The item renderer to add to the control's layout.
      
       | 
getRendererSemanticValue | () | 메서드 | 
 public function getRendererSemanticValue(target:Object, semanticProperty:String):Object| 언어 버전: | ActionScript 3.0 | 
| 제품 버전: | Flex 3 | 
| 런타임 버전: | Flash Player 9, AIR 1.1 | 
      Returns true or false 
      to indicates whether the effect should play on the target.
      The EffectTargetFilter class calls this method when you set 
      the filter property on a data effect. 
      For example, you set filter property 
      to addItem or removeItem.
     
      
매개 변수
target:Object — An item renderer
     
       | |
semanticProperty:String — The semantic property of the renderer
      whose value will be returned.
      
       | 
Object — true or false 
      to indicates whether the effect should play on the target. 
      
       | 
removeDataEffectItem | () | 메서드 | 
 public function removeDataEffectItem(target:Object):void| 언어 버전: | ActionScript 3.0 | 
| 제품 버전: | Flex 3 | 
| 런타임 버전: | Flash Player 9, AIR 1.1 | 
      Removes an item renderer if a data change effect is running.
      The item renderer must correspond to data that has already
      been removed from the data provider collection.
     
      This function will be called by a RemoveItemAction
      effect as part of a data change effect to specify the point
      at which a data item ceases to displayed by the control using
      an item renderer.
     
      
매개 변수
target:Object — The item renderer to remove from the control's layout.
      
       | 
unconstrainRenderer | () | 메서드 | 
 public function unconstrainRenderer(item:Object):void| 언어 버전: | ActionScript 3.0 | 
| 제품 버전: | Flex 3 | 
| 런타임 버전: | Flash Player 9, AIR 1.1 | 
      Called by an UnconstrainItemAction effect
      as part of a data change effect if the item renderers corresponding
      to certain data items need to move outside the normal positions
      of item renderers in the control. 
      The control does not attempt to position the item render for the 
      duration of the effect.
     
      
매개 변수
item:Object — The item renderer that is a target of the effect.
      
       | 
Tue Jun 12 2018, 03:17 PM Z