Class: GoToRemoteAction

PSPDFKit.Actions.GoToRemoteAction

PDF action to go to a different (remote) file. This action is not implemented yet.

It is an Immutable.Record and thus can be updated using set(key, value), for example: action.set("relativePath", "/other_document.pdf");.

Constructor

new PSPDFKit.Actions.GoToRemoteAction(args)

Go to a different (remote) file.

Parameters:
Name Type Description
args object
Example

Create a new GoToRemoteAction

const action = new PSPDFKit.Actions.GoToRemoteAction({
  relativePath: "/other_document.pdf"
});

Extends

Members




Members

namedDestination: string

A named destination.

Type:
  • string

relativePath: string

The relative path of the file to open.

Type:
  • string

subActions: PSPDFKit.Immutable.List.<Action>

Actions can be chained by adding them to this immutable List.

Type: