FoxitPDFSDKforWeb v10.0.0
Foxit PDF SDK for Web
RemoteGotoAction Class Reference

RemoteGoto action object. More...

Inheritance diagram for RemoteGotoAction:
Action

Public Member Functions

 getDestination ()
 Get the destination information. More...
 
 getFileSpec ()
 Get file specifications. More...
 
 getNewWindowFlag ()
 Get the flag which is used to decide whether to open the destination document in a new window or not. More...
 
 setDestination (destination)
 Set the destination information. More...
 
 setFileSpec (fileSpec)
 Set file specifications. More...
 
 setNewWindowFlag (flag)
 Set the flag which is used to decide whether to open the destination document in a new window or not. More...
 
- Public Member Functions inherited from Action
 getSubAction (index)
 Get a sub-action by index. More...
 
 getSubActionCount ()
 Get the count of sub-actions. More...
 
 getType ()
 Get action type. More...
 
 insertSubAction (index, action)
 Insert a new sub-action to the location specified by index. More...
 
 removeAllSubActions ()
 Remove all the sub-actions. More...
 
 removeSubAction (index)
 Remove a sub-action, specified by index. More...
 
 setSubAction (index, action)
 Set a sub-action by index. More...
 

Detailed Description

RemoteGoto action object.

Member Function Documentation

◆ getDestination()

RemoteGotoAction::getDestination ( )
inline

Get the destination information.

Returns
object - A destination object.
Example:
function example (action) {
action.getDestination();
}
Since
10.1.0

◆ getFileSpec()

RemoteGotoAction::getFileSpec ( )
inline

Get file specifications.

Returns
FileSpec - The file specifications object.
Example:
function example (action) {
action.getFileSpec();
}
Since
10.1.0

◆ getNewWindowFlag()

RemoteGotoAction::getNewWindowFlag ( )
inline

Get the flag which is used to decide whether to open the destination document in a new window or not.

Returns
number - Flag value.
Example:
function example (action) {
action.getNewWindowFlag();
}
Since
10.1.0

◆ setDestination()

RemoteGotoAction::setDestination (   destination)
inline

Set the destination information.

Parameters
destinationobject - A valid destination object to be set.
destination.zoomModestring - Set the zoom mode.Please refer to values starting from ZoomMode and this would be one of these values.
destination.zoomFactornumber - Set zoom factor.This is only useful when zoom mode is ZoomXYZ. For ZoomXYZ, if the zoom factor is 0, that means just use current zoom factor of application as the destination zoom factor. For other zoom mode, this function will be 0. Valid when the zoomMode is ZoomXYZ.
destination.pageIndexstring - The index of the destination page in the PDF document.
destination.leftstring - Set left position value. Valid when the zoomMode is ZoomXYZ or ZoomFitRect.
destination.topstring - Set top position value. Valid when the zoomMode is ZoomXYZ or ZoomFitRect or ZoomFitHorz.
destination.rightstring - Set right position value. Valid when the zoomMode is ZoomFitRect.
destination.bottomstring - Set bottom position value. Valid when the zoomMode is ZoomFitRect.
Returns
Promise<object> - An action object.
Example:
async function example (action) {
let destination = {
zoomMode: PDFViewCtrl.PDF.constant.ZoomMode.ZoomXYZ,
zoomFactor: 0,
pageIndex: 1,
left: 0,
top: 0,
right: 0,
bottom: 0
};
await action.setDestination(destination);
}
Since
10.1.0

◆ setFileSpec()

RemoteGotoAction::setFileSpec (   fileSpec)
inline

Set file specifications.

Parameters
fileSpecFileSpec - The file specifications object.
Returns
Promise<object> - An action object.
Example:
async function example (action) {
const FileSpec = PDFViewCtrl.PDF.common.FileSpec;
let fileSpec = new FileSpec({
fileName: './example.pdf',
});
await action.setFileSpec(fileSpec);
}
Since
10.1.0

◆ setNewWindowFlag()

RemoteGotoAction::setNewWindowFlag (   flag)
inline

Set the flag which is used to decide whether to open the destination document in a new window or not.

Parameters
flagNewWindowFlag - The flag value.
Returns
Promise<object> - An action object.
Example:
function example (action) {
action.setNewWindowFlag(PDFViewCtrl.PDF.constant.NewWindowFlag.NewWindowFlagTrue);
}
Since
10.1.0

Foxit Software Corporation Logo
@2025 Foxit Software Incorporated. All rights reserved.