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

NameTypeAccessDescription
actionNameStringReadReturns the action name.
cOSDictionaryCOSDictionaryReadReturns the underlying action dictionary.
typeStringReadReturns the action type (/S entry).
nextPdfActionReadReturns the next action (/Next), if any.

Methods

SignatureDescription
NamedAction(name: String)Creates a NamedAction with the given name.
NamedAction(dict: COSDictionary)Parses a NamedAction from a dictionary.
getActionName()StringReturns the action name.
getCOSDictionary()COSDictionaryReturns the underlying action dictionary.
getType()StringReturns the action type (/S entry).
getNext()PdfActionReturns the next action (/Next), if any.
fromDictionary(dict: COSDictionary, doc: Document)PdfActionFactory: creates the appropriate PdfAction subclass from a dictionary.

See Also