| 包 | 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():IGuideNodecurrentPanel | 属性 |
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():IGuideNodehasNextPanel | 属性 |
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():BooleanhasPreviousPanel | 属性 |
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():BooleanrootNode | 属性 |
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():IGuideNodeselect | () | 方法 |
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, 11:04 AM Z