ActionCreateGotoRemote Method (FileSpec, Int32) |
Creates a new 'GoToR'action. A remote go-to action is similar to an
ordinary go-to action but jumps to a destination in another PDF file
instead of the current file.
Namespace:
pdftron.PDF
Assembly:
pdftron (in pdftron.dll) Version: 255.255.255.255
Syntax public static Action CreateGotoRemote(
FileSpec file,
int page_num
)
Public Shared Function CreateGotoRemote (
file As FileSpec,
page_num As Integer
) As Action
public:
static Action^ CreateGotoRemote(
[InAttribute] FileSpec^ file,
[InAttribute] int page_num
)
pdftron.PDF.Action.CreateGotoRemote = function(file, page_num);
Parameters
- file
- Type: pdftron.PDFFileSpec
The file referred to by the action.
- page_num
- Type: SystemInt32
A page number within the remote document. The first page is
numbered 0.
Return Value
Type:
Action the action
Remarks A flag specifying whether to open the destination document
in a new window. If new_window is false, the destination document replaces
the current document in the same window, otherwise the viewer application
should behave in accordance with the current user preference.
See Also