GoToRemoteAction
GoToRemoteAction
Overview
GoToRemoteAction 是一个类在Java的FOSS中. 继承人: PdfAction.
远程操作 (Go-To) 在另一个PDF中导航到目的地 (ISO 32000-1:2008, §12.6.4.3).
本类提供了11种方法,用于在Java程序中使用GoToRemoteAction 对象. 有的方法包括: GoToRemoteAction, fromDictionary, getFile, getNext, getPdfDictionary, getType, isNewWindow, setFile, setNewWindow. 所有公众成员在安装了Java的FOSS包后,可以访问任何 Java应用程序. 特性: file, newWindow, next, pdfDictionary, type.
Properties
| Name | Type | Access | Description |
|---|---|---|---|
file | String | Read | 返回文件规格 (/F输入). |
newWindow | boolean | Read | 返回是否应该在新窗口中打开目的文件. |
pdfDictionary | PdfDictionary | Read | 返回底层动作词典. |
type | String | Read | 返回操作类型 (/S输入). |
next | PdfAction | Read | 返回下一个动作 (/ 下一步),如果有. |
Methods
| Signature | Description |
|---|---|
GoToRemoteAction(dict: PdfDictionary) | 解析一个GoToRemoteAction从字典. |
GoToRemoteAction(file: String, pageNumber: int) | 创建一个 GoToRemoteAction 指向另一个 PDF 文件中的特定页面. |
GoToRemoteAction(file: String, destination: ExplicitDestination) | 在另一个PDF文件中创建指向特定目的地的GoToRemoteAction. |
getFile() → String | 返回文件规格 (/F输入). |
setFile(file: String) | 设置文件规格. |
isNewWindow() → boolean | 返回是否应该在新窗口中打开目的文件. |
setNewWindow(newWindow: boolean) | 设置目的文件是否应该在新窗口中打开. |
getPdfDictionary() → PdfDictionary | 返回底层动作词典. |
getType() → String | 返回操作类型 (/S输入). |
getNext() → PdfAction | 返回下一个动作 (/ 下一步),如果有. |
fromDictionary(dict: PdfDictionary, doc: Document) → PdfAction | 工厂:从字典中创建适当的PdfAction子类. |