Foxit PDF SDK
|
Public Member Functions | |
RemoteGotoAction (Action action) | |
Constructor, with parent class object. More... | |
Destination | GetDestination () |
Get the destination information. More... | |
string | GetDestinationName () |
Get the destination name, which is defined in target PDF file. More... | |
FileSpec | GetFileSpec () |
Get the file specification which specifies the destination file. More... | |
Action.NewWindowFlag | GetNewWindowFlag () |
Get the flag which is used to decide whether to open the destination document in a new window or not. More... | |
void | SetDestination (Destination destination) |
Set the destination information, which is used to specify the position in target PDF file to jump to. More... | |
void | SetDestinationName (string dest_name) |
Set the destination name. More... | |
void | SetFileSpec (FileSpec file_specification) |
Set the file specification which specifies the destination file. More... | |
void | SetNewWindowFlag (Action.NewWindowFlag flag) |
Set the flag which is used to decide whether to open the destination document in a new window or not. More... | |
![]() | |
Action (PDFDoc document, PDFDictionary action_dict) | |
Constructor, with parameters. More... | |
Action (Action action) | |
Constructor, with another action object. More... | |
PDFDictionary | GetDict () |
Get PDF dictionary of current object. More... | |
PDFDoc | GetDocument () |
Get the PDF document, to which current action belongs. More... | |
Action | GetSubAction (int index) |
Get a sub-action by index. More... | |
int | GetSubActionCount () |
Get the count of sub-actions. More... | |
Action.Type | GetType () |
Get action type. More... | |
void | InsertSubAction (int index, Action sub_action) |
Insert a new sub-action to the location specified by index. More... | |
bool | IsEmpty () |
Check whether current object is empty or not. More... | |
void | RemoveAllSubActions () |
Remove all the sub-actions. More... | |
void | RemoveSubAction (int index) |
Remove a sub-action, specified by index. More... | |
void | SetSubAction (int index, Action sub_action) |
Set a sub-action by index. More... | |
Additional Inherited Members | |
![]() | |
enum | NewWindowFlag { NewWindowFlag.e_NewWindowFlagFalse = 0, NewWindowFlag.e_NewWindowFlagTrue = 1, NewWindowFlag.e_NewWindowFlagNone = 2 } |
Enumeration for new window flag. More... | |
enum | Type { Type.e_TypeUnknown = 0, Type.e_TypeGoto = 1, Type.e_TypeGoToR = 2, Type.e_TypeGoToE = 3, Type.e_TypeLaunch = 4, Type.e_TypeThread = 5, Type.e_TypeURI = 6, Type.e_TypeSound = 7, Type.e_TypeMovie = 8, Type.e_TypeHide = 9, Type.e_TypeNamed = 10, Type.e_TypeSubmitForm = 11, Type.e_TypeResetForm = 12, Type.e_TypeImportData = 13, Type.e_TypeJavaScript = 14, Type.e_TypeSetOCGState = 15, Type.e_TypeRendition = 16, Type.e_TypeTrans = 17, Type.e_TypeGoTo3DView = 18 } |
Enumeration for action type. More... | |
![]() | |
static Action | Create (PDFDoc document, Action.Type action_type) |
Create a new action, for specified action type. More... | |
Remote go-to action is similar to an ordinary go-to action but jumps to a destination in another PDF file (not embedded file) instead of current PDF file (which contains the remote go-to action).
Class foxit.pdf.actions.RemoteGotoAction is derived from Action and offers functions to get/set remote go-to action data. Destination information of a remote go-to action can be represents as either a destination array or a destination name:
Destination PDF file and destination information are necessary for a remote go-to action, so user should ensure to set both data by RemoteGotoAction.SetFileSpec and RemoteGotoAction.SetDestination or RemoteGotoAction.SetDestinationName , especially for a new remote go-to action; otherwise, the remote go-to action would be useless.
|
inline |
Constructor, with parent class object.
[in] | action | Parent class object. |
|
inline |
Get the destination information.
For a remote go-to action, the destination information can be stored as either a destination object or a destination name:
If the return value of function Destination.IsEmpty for the returned destination object is true and function RemoteGotoAction.GetDestinationName returns an empty string, that means the remote go-to action does not have any destination information.
|
inline |
Get the destination name, which is defined in target PDF file.
For a remote go-to action, the destination information can be stored as either a destination object or a destination name:
If the return value of function Destination.IsEmpty for the returned destination object is true and function RemoteGotoAction.GetDestinationName returns an empty string, that means the remote go-to action does not have any destination information.
|
inline |
Get the file specification which specifies the destination file.
|
inline |
Get the flag which is used to decide whether to open the destination document in a new window or not.
|
inline |
Set the destination information, which is used to specify the position in target PDF file to jump to.
[in] | destination | A valid destination object to be set. |
|
inline |
Set the destination name.
The destination name should have been in the "Dests" name tree in the target PDF file.
[in] | dest_name | A destination name to be set. It should be not be an empty string. |
|
inline |
Set the file specification which specifies the destination file.
[in] | file_specification | A valid file specification object to be set. This object should belong to the same PDF file as current action. It should represent another PDF file as the target file, and should not represent an embedded file. |
|
inline |
Set the flag which is used to decide whether to open the destination document in a new window or not.
[in] | flag | The new window flag. It should be one of following values:
|