GenericAction
Overview
GenericAction is a class in Aspose.Pdf FOSS for Java.
Inherits from: PdfAction.
Represents a PDF action of an unknown or unsupported type.
Properties
| Name | Type | Access | Description |
|---|---|---|---|
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 |
|---|---|
GenericAction(dict: COSDictionary) | Creates a GenericAction wrapping the given dictionary. |
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. |