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.
This class provides 5 methods for working with GenericAction objects in Java programs.
Available methods include: GenericAction, fromDictionary, getNext, getPdfDictionary, getType.
All public members are accessible to any Java application after installing the Aspose.PDF FOSS for Java package.
Properties: next, pdfDictionary, type.
Properties
| Name | Type | Access | Description |
|---|---|---|---|
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 |
|---|---|
GenericAction(dict: PdfDictionary) | Creates a GenericAction wrapping the given dictionary. |
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. |