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");.
set(key, value)
action.set("relativePath", "/other_document.pdf");
Create a new GoToRemoteAction
const action = new NutrientViewer.Actions.GoToRemoteAction({ relativePath: "/other_document.pdf"}); Copy
const action = new NutrientViewer.Actions.GoToRemoteAction({ relativePath: "/other_document.pdf"});
Optional
A named destination.
The relative path of the file to open.
Actions can be chained by adding them to this immutable List.
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");.Example
Create a new GoToRemoteAction