|
| 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...
|
|
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:
-
If the destination information is a destination array, Foxit PDF SDK uses a destination object to represent it and RemoteGotoAction.GetDestination can be used to get such value.
-
If the destination information is a destination name, Foxit PDF SDK uses a string to represent it and RemoteGotoAction.GetDestinationName can be used to get such value. Specially, the related destination array is defined in the target PDF file, not current PDF file. User can use functions in class foxit.pdf.objects.PDFNameTree to retrieve the actual destination array from target PDF file.
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.
- See Also
- Action