[]
Defines a remote go-to action is similar to an ordinary go-to action ActionGoTo but jumps to a destination in another PDF file instead of the current file.
public class ActionGoToR : ActionBase, IPdfDict
Initialize a new instance of the ActionGoToR class.
public ActionGoToR()
Initialize a new instance of the ActionGoToR class.
public ActionGoToR(FileSpecification file, DestinationBase dest, bool newWindow = false)
file
FileSpecificationThe FileSpecification object defining another file.
dest
DestinationBaseThe DestinationBase object defining the new document view.
newWindow
boolA flag specifying whether to open the destination document in a new window.
Initialize a new instance of the ActionGoToR class.
public ActionGoToR(string fileName, DestinationBase dest, bool newWindow = false)
fileName
stringThe name of another file.
dest
DestinationBaseThe DestinationBase object defining the new document view.
newWindow
boolA flag specifying whether to open the destination document in a new window.
Gets the DestinationBase object defining the new document view.
public DestinationBase Dest { get; set; }
Gets or sets the FileSpecification object defining the another file.
public FileSpecification File { get; set; }
Gets a value indicating whether to open the destination document in a new window.
public bool NewWindow { get; set; }