| パッケージ | com.adobe.guides.control | 
| インターフェイス | public interface IGuideNavigation | 
| 言語バージョン: | ActionScript 3.0 | 
| 製品バージョン: | Adobe Digital Enterprise Platform Document Services - Guides 10 | 
| ランタイムバージョン: | AIR 1.0, Flash Player 10.2 | 
| プロパティ | 定義元 | ||
|---|---|---|---|
| currentItem : IGuideNode [読み取り専用]  
		  currentItem is the GuideNode that represents the currently selected item on the current panel in the Guide. | IGuideNavigation | ||
| currentPanel : IGuideNode [読み取り専用]  
		  currentPanel is the GuideNode that represents the currently selected panel in the Guide. | IGuideNavigation | ||
| hasNextPanel : Boolean [読み取り専用]  
		 hasNextPanel returns whether there is a next panel currenly available. | IGuideNavigation | ||
| hasPreviousPanel : Boolean [読み取り専用]  
		 hasPreviousPanel returns whether there is a previous panel currenly available. | IGuideNavigation | ||
| rootNode : IGuideNode [読み取り専用]  
		  rootNode is the top level GuideNode representing the current Guide instance's structure. | IGuideNavigation | ||
| メソッド | 定義元 | ||
|---|---|---|---|
|  
		 select will change the Guide view and focus to the provided GuideNode. | IGuideNavigation | ||
|  
		 selectFirst changes the guide to the first GuideNode instance of the type requested. | IGuideNavigation | ||
|  
		 selectLast changes the guide to the last GuideNode instance of the type requested. | IGuideNavigation | ||
|  
		 selectNext changes the guide to the next GuideNode instance of the type requested. | IGuideNavigation | ||
|  
		 selectPrevious changes the guide to the previous GuideNode instance of the type requested. | IGuideNavigation | ||
| currentItem | プロパティ | 
currentItem:IGuideNode  [読み取り専用] | 言語バージョン: | ActionScript 3.0 | 
| 製品バージョン: | Adobe Digital Enterprise Platform Document Services - Guides 10 | 
| ランタイムバージョン: | AIR 1.0, Flash Player 10.2 | 
currentItem is the GuideNode that represents the currently selected item on the current panel in the Guide.
このプロパティはデータバインディングのソースとして使用できます。 このプロパティを変更すると、 propertyChange                 イベントが送出されます。
実装
    public function get currentItem():IGuideNode| currentPanel | プロパティ | 
currentPanel:IGuideNode  [読み取り専用] | 言語バージョン: | ActionScript 3.0 | 
| 製品バージョン: | Adobe Digital Enterprise Platform Document Services - Guides 10 | 
| ランタイムバージョン: | AIR 1.0, Flash Player 10.2 | 
currentPanel is the GuideNode that represents the currently selected panel in the Guide.
このプロパティはデータバインディングのソースとして使用できます。 このプロパティを変更すると、 propertyChange                 イベントが送出されます。
実装
    public function get currentPanel():IGuideNode| hasNextPanel | プロパティ | 
hasNextPanel:Boolean  [読み取り専用] | 言語バージョン: | ActionScript 3.0 | 
| 製品バージョン: | Adobe Digital Enterprise Platform Document Services - Guides 10 | 
| ランタイムバージョン: | AIR 1.0, Flash Player 10.2 | 
hasNextPanel returns whether there is a next panel currenly available.
このプロパティはデータバインディングのソースとして使用できます。 このプロパティを変更すると、 propertyChange                 イベントが送出されます。
実装
    public function get hasNextPanel():Boolean| hasPreviousPanel | プロパティ | 
hasPreviousPanel:Boolean  [読み取り専用] | 言語バージョン: | ActionScript 3.0 | 
| 製品バージョン: | Adobe Digital Enterprise Platform Document Services - Guides 10 | 
| ランタイムバージョン: | AIR 1.0, Flash Player 10.2 | 
hasPreviousPanel returns whether there is a previous panel currenly available.
このプロパティはデータバインディングのソースとして使用できます。 このプロパティを変更すると、 propertyChange                 イベントが送出されます。
実装
    public function get hasPreviousPanel():Boolean| rootNode | プロパティ | 
rootNode:IGuideNode  [読み取り専用] | 言語バージョン: | ActionScript 3.0 | 
| 製品バージョン: | Adobe Digital Enterprise Platform Document Services - Guides 10 | 
| ランタイムバージョン: | AIR 1.0, Flash Player 10.2 | 
rootNode is the top level GuideNode representing the current Guide instance's structure.
このプロパティはデータバインディングのソースとして使用できます。 このプロパティを変更すると、 propertyChange                 イベントが送出されます。
実装
    public function get rootNode():IGuideNode| select | () | メソッド | 
 public function select(node:IGuideNode):Boolean| 言語バージョン: | ActionScript 3.0 | 
| 製品バージョン: | Adobe Digital Enterprise Platform Document Services - Guides 10 | 
| ランタイムバージョン: | AIR 1.0, Flash Player 10.2 | 
select will change the Guide view and focus to the provided GuideNode. It set First Panel and Item found from the given GuideNode.
パラメーター
| node:IGuideNode— the guide item to navigate to, can be a node type of one of: guide, section, panel, item. | 
| Boolean— Boolean | 
| selectFirst | () | メソッド | 
 public function selectFirst(type:String = "panel"):Boolean| 言語バージョン: | ActionScript 3.0 | 
| 製品バージョン: | Adobe Digital Enterprise Platform Document Services - Guides 10 | 
| ランタイムバージョン: | AIR 1.0, Flash Player 10.2 | 
selectFirst changes the guide to the first GuideNode instance of the type requested.
パラメーター
| type:String(default = "panel")— the guide item type of the first of its kind to navigate to.
		 			- default is PANEL, other options avaliable are GUIDE, SECTION, ITEM. | 
| Boolean— Boolean | 
| selectLast | () | メソッド | 
 public function selectLast(type:String = "panel"):Boolean| 言語バージョン: | ActionScript 3.0 | 
| 製品バージョン: | Adobe Digital Enterprise Platform Document Services - Guides 10 | 
| ランタイムバージョン: | AIR 1.0, Flash Player 10.2 | 
selectLast changes the guide to the last GuideNode instance of the type requested.
パラメーター
| type:String(default = "panel")— the guide item type of the last of its kind to navigate to.
		 			- default is PANEL, other options avaliable are GUIDE, SECTION, ITEM. | 
| Boolean— Boolean | 
| selectNext | () | メソッド | 
 public function selectNext(type:String = "panel"):Boolean| 言語バージョン: | ActionScript 3.0 | 
| 製品バージョン: | Adobe Digital Enterprise Platform Document Services - Guides 10 | 
| ランタイムバージョン: | AIR 1.0, Flash Player 10.2 | 
selectNext changes the guide to the next GuideNode instance of the type requested.
パラメーター
| type:String(default = "panel")— the guide item type of the next of its kind to navigate to.
		 			- default is PANEL, other options avaliable are GUIDE, SECTION, ITEM. | 
| Boolean— Boolean | 
| selectPrevious | () | メソッド | 
 public function selectPrevious(type:String = "panel"):Boolean| 言語バージョン: | ActionScript 3.0 | 
| 製品バージョン: | Adobe Digital Enterprise Platform Document Services - Guides 10 | 
| ランタイムバージョン: | AIR 1.0, Flash Player 10.2 | 
selectPrevious changes the guide to the previous GuideNode instance of the type requested.
パラメーター
| type:String(default = "panel")— the guide item type of the previous of its kind to navigate to.
		 			- default is PANEL, other options avaliable are GUIDE, SECTION, ITEM. | 
| Boolean— Boolean | 
Tue Jun 12 2018, 10:34 AM Z