GoToEmbeddedAction
Overview
GoToEmbeddedAction is a class in Aspose.PDF FOSS for Java.
Inherits from: PdfAction.
GoToE (Go-To-Embedded) action — navigates to a destination in an embedded PDF (ISO 32000-1:2008, §12.6.4.4).
This class provides 8 methods for working with GoToEmbeddedAction objects in Java programs.
Available methods include: GoToEmbeddedAction, fromDictionary, getDestination, getNext, getPdfDictionary, getTarget, getType, isNewWindow.
All public members are accessible to any Java application after installing the Aspose.PDF FOSS for Java package.
Properties: destination, newWindow, next, pdfDictionary, target, type.
Properties
| Name | Type | Access | Description |
|---|---|---|---|
destination | PdfBase | Read | Returns the destination in the embedded document (/D). |
target | PdfDictionary | Read | Returns the target specification for the embedded file (/T). |
newWindow | boolean | Read | Returns whether a new window should be opened. |
pdfDictionary | PdfDictionary | 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 |
|---|---|
GoToEmbeddedAction(dict: PdfDictionary) | Parses a GoToEmbeddedAction from an existing dictionary. |
getDestination() → PdfBase | Returns the destination in the embedded document (/D). |
getTarget() → PdfDictionary | Returns the target specification for the embedded file (/T). |
isNewWindow() → boolean | Returns whether a new window should be opened. |
getPdfDictionary() → PdfDictionary | Returns the underlying action dictionary. |
getType() → String | Returns the action type (/S entry). |
getNext() → PdfAction | Returns the next action (/Next), if any. |
fromDictionary(dict: PdfDictionary, doc: Document) → PdfAction | Factory: creates the appropriate PdfAction subclass from a dictionary. |