ActionCreateGotoRemote Method (FileSpec, Int32, Boolean) |
Creates a new 'GoToR'action. See the above method for details.
Namespace:
pdftron.PDF
Assembly:
pdftron (in pdftron.dll) Version: 255.255.255.255
Syntax public static Action CreateGotoRemote(
FileSpec file,
int page_num,
bool new_window
)
Public Shared Function CreateGotoRemote (
file As FileSpec,
page_num As Integer,
new_window As Boolean
) As Action
public:
static Action^ CreateGotoRemote(
[InAttribute] FileSpec^ file,
[InAttribute] int page_num,
[InAttribute] bool new_window
)
pdftron.PDF.Action.CreateGotoRemote = function(file, page_num, new_window);
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.
- new_window
- Type: SystemBoolean
the new_window
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