適用於 Adobe® Flash® Platform 的 ActionScript® 3.0 參考
首頁  |  隱藏套件和類別清單 |  套件  |  類別  |  新增內容  |  索引  |  附錄  |  為什麼顯示英文?
篩選: 從伺服器擷取資料...
從伺服器擷取資料...
com.adobe.mosaic.om.interfaces 

IViewManager  - AS3 ADEP Composite Application

套件com.adobe.mosaic.om.interfaces
介面public interface IViewManager extends IMosaicNode , IUIAttributes

語言版本: ActionScript 3.0
產品版本: Adobe Digital Enterprise Platform Experience Services - Composite Application Framework 10
執行階段版本: AIR 2.6, Flash Player 10.2

The IViewManager interface provides access to the views and includes add/remove/get of views.



公用屬性
 屬性定義自
  allowContentAdd : Boolean
Returns the allowContentAdd value
IViewManager
 Inheritedbottom : Number
Returns the node's bottom value which is the vertical distance, in pixels, from the lower edge of the component to the lower edge of the content region.
IUIAttributes
 InheritedchildrenNodes : Array
[唯讀] Returns an array of child nodes (IMosaicNode objects) of the node.
IMosaicNode
 Inheritedheight : String
The maximum height for the nodes.
IUIAttributes
  layout : ILayout
[唯讀] The layout of the viewManager.
IViewManager
 Inheritedleft : Number
Returns the node's left value which is horizontal distance, in pixels, from the left edge of the component to the left edge of the content region.
IUIAttributes
 InheritedmaxHeight : Number
The node's maximum width.
IUIAttributes
 InheritedmaxWidth : Number
The node's maximum width.
IUIAttributes
 InheritedminHeight : Number
The node's minimum height.
IUIAttributes
 InheritedminWidth : Number
The the node's minimum width.
IUIAttributes
 InheritednodeID : String
[唯讀] Returns the ID of the node.
IMosaicNode
 InheritednodeLabel : String
Returns the label of the tile.
IMosaicNode
 InheritednodeName : String
[唯讀] Returns the name of the node.
IMosaicNode
 InheritednodeType : String
[唯讀] Returns the type value of the node.
IMosaicNode
 InheritedparentNode : IMosaicNode
[唯讀] Returns the direct parent node of the current node within the application.
IMosaicNode
 Inheritedright : Number
Returns the node's right value which is the horizontal distance, in pixels, from the right edge of the component to the right edge of the content region.
IUIAttributes
  saveMode : String
Returns the saveMode that controls the ability to save and close views managed by the ViewManager.
IViewManager
 InheritedstyleName : String
The style name for the node.
IUIAttributes
 Inheritedtop : Number
Returns the node's top value which is the vertical distance, in pixels, from the upper edge of the component to the upper edge of the content region.
IUIAttributes
 InheriteduniqueID : String
[唯讀] Returns the generated unique ID of the node.
IMosaicNode
  views : Array
[唯讀] Returns an array of views that are available within the application.
IViewManager
 Inheritedvisible : Boolean
Returns the node's visible setting.
IUIAttributes
 Inheritedwidth : String
Returns the node's width.
IUIAttributes
 Inheritedx : Number
Returns the node's x coordinate, relative to its container.
IUIAttributes
 Inheritedy : Number
Returns the node's y coordinate, relative to its container.
IUIAttributes
公用方法
 方法定義自
  
addView(view:IView, onSuccess:Function = null, onFailure:Function = null):void
Adds a view to the ViewManager.
IViewManager
 Inherited
Clones an IMosaicNode.
IMosaicNode
  
Removes the specified view from the application.
IViewManager
 Inherited
resolveReferences(onSuccess:Function = null, onFailure:Function = null):void
Resolves any reference elements that may be in the View, Panel, or Tile.
IMosaicNode
屬性詳細資訊

allowContentAdd

屬性
allowContentAdd:Boolean

語言版本: ActionScript 3.0
產品版本: Adobe Digital Enterprise Platform Experience Services - Composite Application Framework 10
執行階段版本: AIR 2.6, Flash Player 10.2

Returns the allowContentAdd value



實作
    public function get allowContentAdd():Boolean
    public function set allowContentAdd(value:Boolean):void

layout

屬性 
layout:ILayout  [唯讀]

語言版本: ActionScript 3.0
產品版本: Adobe Digital Enterprise Platform Experience Services - Composite Application Framework 10
執行階段版本: AIR 2.6, Flash Player 10.2

The layout of the viewManager.



實作
    public function get layout():ILayout

saveMode

屬性 
saveMode:String

語言版本: ActionScript 3.0
產品版本: Adobe Digital Enterprise Platform Experience Services - Composite Application Framework 10
執行階段版本: AIR 2.6, Flash Player 10.2

Returns the saveMode that controls the ability to save and close views managed by the ViewManager. The default allows views to be saved and closed ("saveAndClose"). Other options are to save without closing ("saveOnly"), close without saving ("closeOnly"), or to do nothing ("none"). If the saveMode is set to a value not supported by the chosen Layout, then it will be treated as if no saveMode were specified and default to "saveAndClose".



實作
    public function get saveMode():String
    public function set saveMode(value:String):void

views

屬性 
views:Array  [唯讀]

語言版本: ActionScript 3.0
產品版本: Adobe Digital Enterprise Platform Experience Services - Composite Application Framework 10
執行階段版本: AIR 2.6, Flash Player 10.2

Returns an array of views that are available within the application.



實作
    public function get views():Array
方法詳細資訊

addView

()方法
public function addView(view:IView, onSuccess:Function = null, onFailure:Function = null):void

語言版本: ActionScript 3.0
產品版本: Adobe Digital Enterprise Platform Experience Services - Composite Application Framework 10
執行階段版本: AIR 2.6, Flash Player 10.2

Adds a view to the ViewManager. The resulting AddViewEvent indicating success or failure is returned in the callback function and also dispatched to the MessageListeners.

參數

view:IView — The view to add.
 
onSuccess:Function (default = null) — a Function callback that takes in one parameter of type AddViewEvent when the operation succeeded
 
onFailure:Function (default = null) — a Function callback that takes in one parameter of type AddViewEvent when the operation failed


範例
如何使用本範例
This example retrieves a view named "sampleView" from a catalog and adds the view to the viewManager:
		 mosaicApp.addMessageListener(AddViewEvent.NAMESPACE, AddViewEvent.SUCCESS, onAddViewEvent);
		 mosaicApp.addMessageListener(AddViewEvent.NAMESPACE, AddViewEvent.FAILURE, onAddViewEvent);
		 
		 var v:IView = sampleCatalog.getView("sampleView");
		 (thisTile.parentView.parentNode as IViewManager).addView(v,onAddViewSuccess,onAddViewFailure);
		 
		 //functions to manage success or failure callbacks
		 private function onAddViewSuccess(evt:AddViewEvent):void {} 
		 private function onAddViewFailure(evt:AddViewEvent):void {}
		 
		 //functions to manage success or failure events
		 private function onAddViewEvent(message:Message):void {
		     var addViewEvent:AddViewEvent = message.payload as AddViewEvent;
		     var addedView:IView = addViewEvent.viewNode;
		     //custom processing
		 }
		 

removeView

()方法 
public function removeView(node:IView):IView

語言版本: ActionScript 3.0
產品版本: Adobe Digital Enterprise Platform Experience Services - Composite Application Framework 10
執行階段版本: AIR 2.6, Flash Player 10.2

Removes the specified view from the application.

參數

node:IView — The view to be deleted.

傳回值
IView — The view that was removed.

相關 API 元素





[ X ]為什麼顯示英文?
「ActionScript 3.0 參考」的內容是以英文顯示

並非所有「ActionScript 3.0 參考」的內容都翻譯為所有語言。當語言元素未翻譯時,就會以英文顯示。例如,ga.controls.HelpBox 類別並沒有翻譯為任何語言。因此在參考的繁體中文版本中,ga.controls.HelpBox 類別就會以英文顯示。