GoToRemoteAction
Overview
GoToRemoteAction is a class in Aspose.Pdf FOSS for Java.
Inherits from: PdfAction.
Go-To Remote action — navigate to a destination in another PDF (ISO 32000-1:2008, §12.6.4.3).
Properties
| Name | Type | Access | Description |
|---|---|---|---|
file | String | Read | Returns the file specification (/F entry). |
newWindow | boolean | Read | Returns whether the destination document should be opened in a new window. |
cOSDictionary | COSDictionary | Read | Returns the underlying action dictionary. |
type | String | Read | Returns the action type (/S entry). |
next | PdfAction | Read | Returns the next action (/Next), if any. |
Methods
| Signature | Description |
|---|---|
GoToRemoteAction(dict: COSDictionary) | Parses a GoToRemoteAction from a dictionary. |
GoToRemoteAction(file: String, pageNumber: int) | Creates a GoToRemoteAction pointing to a specific page in another PDF file. |
GoToRemoteAction(file: String, destination: ExplicitDestination) | Creates a GoToRemoteAction pointing to a specific destination in another PDF file. |
getFile() → String | Returns the file specification (/F entry). |
setFile(file: String) | Sets the file specification. |
isNewWindow() → boolean | Returns whether the destination document should be opened in a new window. |
setNewWindow(newWindow: boolean) | Sets whether the destination document should be opened in a new window. |
getCOSDictionary() → COSDictionary | Returns the underlying action dictionary. |
getType() → String | Returns the action type (/S entry). |
getNext() → PdfAction | Returns the next action (/Next), if any. |
fromDictionary(dict: COSDictionary, doc: Document) → PdfAction | Factory: creates the appropriate PdfAction subclass from a dictionary. |