NamedAction
Overview
NamedAction is a class in Aspose.Pdf FOSS for Java.
Inherits from: PdfAction.
Named action — predefined action (ISO 32000-1:2008, §12.6.4.11).
Properties
| Name | Type | Access | Description |
|---|---|---|---|
actionName | String | Read | Returns the action name. |
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 |
|---|---|
NamedAction(name: String) | Creates a NamedAction with the given name. |
NamedAction(dict: COSDictionary) | Parses a NamedAction from a dictionary. |
getActionName() → String | Returns the action name. |
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. |