TransitionAction
Overview
TransitionAction is a class in Aspose.PDF FOSS for Java.
Inherits from: PdfAction.
Transition action — controls page transitions during presentations (ISO 32000-1:2008, §12.6.4.14).
This class provides 6 methods for working with TransitionAction objects in Java programs.
Available methods include: TransitionAction, fromDictionary, getNext, getPdfDictionary, getTransition, getType.
All public members are accessible to any Java application after installing the Aspose.PDF FOSS for Java package.
Properties: next, pdfDictionary, transition, type.
Properties
| Name | Type | Access | Description |
|---|---|---|---|
transition | PdfDictionary | Read | Returns the transition dictionary (/Trans). |
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 |
|---|---|
TransitionAction(dict: PdfDictionary) | Parses a TransitionAction from an existing dictionary. |
getTransition() → PdfDictionary | Returns the transition dictionary (/Trans). |
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. |