| 패키지 | com.adobe.mosaic.skinning |
| 인터페이스 | public interface IMosaicContainer extends IMosaicComponent , ILayoutChild |
| 언어 버전: | ActionScript 3.0 |
| 제품 버전: | Adobe Digital Enterprise Platform Experience Services - Composite Application Framework 10 |
| 런타임 버전: | AIR 2.6, Flash Player 10.2 |
IMosaicContainer interface is implemented by most composite application container, such as View,
ViewManager, Panel, and Shell. Skins for these containers can declare
their hostComponent to be of this interface type, gaining access to the
underlying composite application container through the functions and properties here.
| 속성 | 정의 주체 | ||
|---|---|---|---|
![]() | allowDelete : Boolean [읽기 전용]
Indicates if this component may be deleted or not. | IMosaicComponent | |
![]() | columnIndex : int
The column index of the component. | ILayoutChild | |
| contentList : ISelectableList [읽기 전용]
The list of components managed by this container as a SelectableList. | IMosaicContainer | ||
![]() | enableDrag : Boolean
Indicates if the item may be dragged. | ILayoutChild | |
![]() | label : String
The title of the component. | IMosaicComponent | |
![]() | mosaicNode : IMosaicNode [읽기 전용]
Do Not Use. | IMosaicComponent | |
![]() | rowIndex : int
The row index of the component
| ILayoutChild | |
| selectedChild : DisplayObject [읽기 전용]
Returns the selectedChild of the hostComponent or null if no
child is currently selected. | IMosaicContainer | ||
| 메서드 | 정의 주체 | ||
|---|---|---|---|
The skin should present a control to allow the user to request a new
child element. | IMosaicContainer | ||
The skin should present a control to allow the user to close
a child element. | IMosaicContainer | ||
The skin should present a control to allow the user to save
a child element. | IMosaicContainer | ||
![]() |
Records the new size of the component in the DOM structure representing
the component. | IMosaicComponent | |
![]() |
Creates an displayable object (eg, Image) of the
child suitable for use in a drag/drop operation as the
drag proxy. | ILayoutChild | |
![]() |
Returns the localized string associated with the given key. | IMosaicComponent | |
Instructs the hostComponent to handle the Add request. | IMosaicContainer | ||
Instructs the hostComponent to handle the Close request. | IMosaicContainer | ||
Instructs the hostComponent to give one of its children a new name. | IMosaicContainer | ||
Instructs the hostComponent to handle the Save request. | IMosaicContainer | ||
Make the hostComponent show the child at the given index. | IMosaicContainer | ||
contentList | 속성 |
contentList:ISelectableList [읽기 전용] | 언어 버전: | ActionScript 3.0 |
| 제품 버전: | Adobe Digital Enterprise Platform Experience Services - Composite Application Framework 10 |
| 런타임 버전: | AIR 2.6, Flash Player 10.2 |
The list of components managed by this container as a SelectableList.
구현
public function get contentList():ISelectableListselectedChild | 속성 |
selectedChild:DisplayObject [읽기 전용] | 언어 버전: | ActionScript 3.0 |
| 제품 버전: | Adobe Digital Enterprise Platform Experience Services - Composite Application Framework 10 |
| 런타임 버전: | AIR 2.6, Flash Player 10.2 |
Returns the selectedChild of the hostComponent or null if no
child is currently selected.
구현
public function get selectedChild():DisplayObjectallowsAdd | () | 메서드 |
public function allowsAdd():Boolean| 언어 버전: | ActionScript 3.0 |
| 제품 버전: | Adobe Digital Enterprise Platform Experience Services - Composite Application Framework 10 |
| 런타임 버전: | AIR 2.6, Flash Player 10.2 |
The skin should present a control to allow the user to request a new
child element. Pressing the control should invoke the handleAddRequest()
function.
Boolean — A value of true if the hostComponent allows new children.
|
allowsClose | () | 메서드 |
public function allowsClose():Boolean| 언어 버전: | ActionScript 3.0 |
| 제품 버전: | Adobe Digital Enterprise Platform Experience Services - Composite Application Framework 10 |
| 런타임 버전: | AIR 2.6, Flash Player 10.2 |
The skin should present a control to allow the user to close a child element. Pressing the control should invoke the handleCloseRequest() function.
반환값Boolean — true if the hostComponent allows its children to be closed.
|
allowsSave | () | 메서드 |
public function allowsSave():Boolean| 언어 버전: | ActionScript 3.0 |
| 제품 버전: | Adobe Digital Enterprise Platform Experience Services - Composite Application Framework 10 |
| 런타임 버전: | AIR 2.6, Flash Player 10.2 |
The skin should present a control to allow the user to save a child element. Pressing the control should invoke the handleSaveRequest() function.
반환값Boolean — true if the hostComponent allows its children to be saved.
|
handleAddRequest | () | 메서드 |
public function handleAddRequest():void| 언어 버전: | ActionScript 3.0 |
| 제품 버전: | Adobe Digital Enterprise Platform Experience Services - Composite Application Framework 10 |
| 런타임 버전: | AIR 2.6, Flash Player 10.2 |
Instructs the hostComponent to handle the Add request.
handleCloseRequest | () | 메서드 |
public function handleCloseRequest(index:int):void| 언어 버전: | ActionScript 3.0 |
| 제품 버전: | Adobe Digital Enterprise Platform Experience Services - Composite Application Framework 10 |
| 런타임 버전: | AIR 2.6, Flash Player 10.2 |
Instructs the hostComponent to handle the Close request.
매개 변수
index:int — The index of the child to close.
|
handleRenameRequest | () | 메서드 |
public function handleRenameRequest(index:int, newName:String):void| 언어 버전: | ActionScript 3.0 |
| 제품 버전: | Adobe Digital Enterprise Platform Experience Services - Composite Application Framework 10 |
| 런타임 버전: | AIR 2.6, Flash Player 10.2 |
Instructs the hostComponent to give one of its children a new name.
매개 변수
index:int — The index of the child to give a new name to.
| |
newName:String — The new name to give.
|
handleSaveRequest | () | 메서드 |
public function handleSaveRequest(index:int):void| 언어 버전: | ActionScript 3.0 |
| 제품 버전: | Adobe Digital Enterprise Platform Experience Services - Composite Application Framework 10 |
| 런타임 버전: | AIR 2.6, Flash Player 10.2 |
Instructs the hostComponent to handle the Save request.
매개 변수
index:int — The index of the child to save.
|
selectChildIndex | () | 메서드 |
public function selectChildIndex(newIndex:int, oldIndex:int):void| 언어 버전: | ActionScript 3.0 |
| 제품 버전: | Adobe Digital Enterprise Platform Experience Services - Composite Application Framework 10 |
| 런타임 버전: | AIR 2.6, Flash Player 10.2 |
Make the hostComponent show the child at the given index.
매개 변수
newIndex:int — The index of the child being selected.
| |
oldIndex:int — The index of the child that was selected.
|
Tue Jun 12 2018, 03:17 PM Z
상속되는 공용 속성 숨기기
상속되는 공용 속성 표시