GoToEmbeddedAction

GoToEmbeddedAction

Overview

GoToEmbeddedAction is a class in Aspose.Pdf FOSS for Java. Inherits from: PdfAction.

GoToE (Go-To-Embedded) action — navigates to a destination in an embedded PDF (ISO 32000-1:2008, §12.6.4.4).

Properties

NameTypeAccessDescription
destinationCOSBaseReadReturns the destination in the embedded document (/D).
targetCOSDictionaryReadReturns the target specification for the embedded file (/T).
newWindowbooleanReadReturns whether a new window should be opened.
cOSDictionaryCOSDictionaryReadReturns the underlying action dictionary.
typeStringReadReturns the action type (/S entry).
nextPdfActionReadReturns the next action (/Next), if any.

Methods

SignatureDescription
GoToEmbeddedAction(dict: COSDictionary)Parses a GoToEmbeddedAction from an existing dictionary.
getDestination()COSBaseReturns the destination in the embedded document (/D).
getTarget()COSDictionaryReturns the target specification for the embedded file (/T).
isNewWindow()booleanReturns whether a new window should be opened.
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