UriAction
Overview
UriAction is a class in Aspose.Pdf FOSS for Java.
Inherits from: PdfAction.
URI action — open a Uniform Resource Identifier (ISO 32000-1:2008, §12.6.4.7).
Properties
| Name | Type | Access | Description |
|---|---|---|---|
uri | String | Read | Returns the URI string. |
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 |
|---|---|
UriAction(uri: String) | Creates a UriAction for the given URI string. |
UriAction(dict: COSDictionary) | Parses a UriAction from an existing dictionary. |
getUri() → String | Returns the URI string. |
setUri(uri: String) | Sets the URI string. |
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. |