GoToURIAction
Overview
GoToURIAction is a class in Aspose.PDF FOSS for Java.
Inherits from: UriAction.
GoToURI action — alias for {@link UriAction} for API compatibility with Aspose.PDF.
This class provides 11 methods for working with GoToURIAction objects in Java programs.
Available methods include: GoToURIAction, UriAction, fromDictionary, getNext, getPdfDictionary, getType, getURI, getUri, setURI, setUri.
All public members are accessible to any Java application after installing the Aspose.PDF FOSS for Java package.
Properties: next, pdfDictionary, type, uRI, uri.
Properties
| Name | Type | Access | Description |
|---|---|---|---|
uRI | String | Read | Returns the URI string. |
uri | String | Read | Returns the URI string. |
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 |
|---|---|
GoToURIAction(uri: String) | Creates a GoToURIAction for the given URI string. |
GoToURIAction(dict: PdfDictionary) | Parses a GoToURIAction from an existing dictionary. |
getURI() → String | Returns the URI string. |
setURI(uri: String) | Sets the URI string. |
UriAction(uri: String) | Creates a UriAction for the given URI string. |
getUri() → String | Returns the URI string. |
setUri(uri: String) | Sets the URI string. |
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. |