GoToRemoteAction

GoToRemoteAction

Overview

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

Go-To Remote action — navigate to a destination in another PDF (ISO 32000-1:2008, §12.6.4.3).

Properties

NameTypeAccessDescription
fileStringReadReturns the file specification (/F entry).
newWindowbooleanReadReturns whether the destination document should be opened in a new window.
cOSDictionaryCOSDictionaryReadReturns the underlying action dictionary.
typeStringReadReturns the action type (/S entry).
nextPdfActionReadReturns the next action (/Next), if any.

Methods

SignatureDescription
GoToRemoteAction(dict: COSDictionary)Parses a GoToRemoteAction from a dictionary.
GoToRemoteAction(file: String, pageNumber: int)Creates a GoToRemoteAction pointing to a specific page in another PDF file.
GoToRemoteAction(file: String, destination: ExplicitDestination)Creates a GoToRemoteAction pointing to a specific destination in another PDF file.
getFile()StringReturns the file specification (/F entry).
setFile(file: String)Sets the file specification.
isNewWindow()booleanReturns whether the destination document should be opened in a new window.
setNewWindow(newWindow: boolean)Sets whether the destination document should be opened in a new window.
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