패키지 | spark.core |
인터페이스 | public interface IGraphicElementContainer |
구현자 | Group, IconItemRenderer |
언어 버전: | ActionScript 3.0 |
제품 버전: | Flex 4.5 |
런타임 버전: | Flash Player 10, AIR 2.0 |
IGraphicElement
children.
Typically instead of directly implementing this interface, a developer would sub-class Group which already implements the IGraphicElementContainer interface.
관련 API 요소
메서드 | 정의 주체 | ||
---|---|---|---|
Notify the host component that an element has changed and needs to be redrawn. | IGraphicElementContainer | ||
Notify the host component that an element changed and needs to validate properties. | IGraphicElementContainer | ||
Notify the host component that an element layer has changed. | IGraphicElementContainer | ||
Notify the host component that an element size has changed. | IGraphicElementContainer |
invalidateGraphicElementDisplayList | () | 메서드 |
public function invalidateGraphicElementDisplayList(element:IGraphicElement):void
언어 버전: | ActionScript 3.0 |
제품 버전: | Flex 4.5 |
런타임 버전: | Flash Player 10, AIR 2.0 |
Notify the host component that an element has changed and needs to be redrawn.
The IGraphicElementContainer
must call the validateDisplayList()
method on the IGraphicElement to give it a chance to redraw.
Typically the host will validate the elements' display lists in its
validateDisplayList()
method.
매개 변수
element:IGraphicElement — The element that has changed.
|
invalidateGraphicElementProperties | () | 메서드 |
public function invalidateGraphicElementProperties(element:IGraphicElement):void
언어 버전: | ActionScript 3.0 |
제품 버전: | Flex 4.5 |
런타임 버전: | Flash Player 10, AIR 2.0 |
Notify the host component that an element changed and needs to validate properties.
The IGraphicElementContainer
must call the validateProperties()
method on the IGraphicElement to give it a chance to commit its properties.
Typically the host will validate the elements' properties in its
validateProperties()
method.
매개 변수
element:IGraphicElement — The element that has changed.
|
invalidateGraphicElementSharing | () | 메서드 |
public function invalidateGraphicElementSharing(element:IGraphicElement):void
언어 버전: | ActionScript 3.0 |
제품 버전: | Flex 4.5 |
런타임 버전: | Flash Player 10, AIR 2.0 |
Notify the host component that an element layer has changed.
The IGraphicElementContainer
must re-evaluates the sequences of
graphic elements with shared DisplayObjects and may need to re-assign the
DisplayObjects and redraw the sequences as a result.
Typically the host will perform this in its
validateProperties()
method.
매개 변수
element:IGraphicElement — The element that has changed size.
|
invalidateGraphicElementSize | () | 메서드 |
public function invalidateGraphicElementSize(element:IGraphicElement):void
언어 버전: | ActionScript 3.0 |
제품 버전: | Flex 4.5 |
런타임 버전: | Flash Player 10, AIR 2.0 |
Notify the host component that an element size has changed.
The IGraphicElementContainer
must call the validateSize()
method on the IGraphicElement to give it a chance to validate its size.
Typically the host will validate the elements' size in its
validateSize()
method.
매개 변수
element:IGraphicElement — The element that has changed size.
|
Tue Jun 12 2018, 03:17 PM Z