Foxit PDF SDK
|
Inherits FoxitPDFSDKPython2._object.
Public Member Functions | |
def | NeedToPause () |
A callback function used to pause the current splitting progress. More... | |
def | ProgressNotify (before_splitting_file_name, after_split_file_path, split_page_count, total_page_count) |
A callback function used to notify the current splitting progress. More... | |
def | ResultNotify (result_array) |
A callback function used to notify the current split result. More... | |
This class represents a callback object used to pause and notify the splitting progress during the splitting process, as well as to notify the result of the split. All the pure virtual functions in this class are used as callback functions and should be implemented by user.
def FoxitPDFSDKPython2.SplitPDFDocCallback.NeedToPause | ( | ) |
A callback function used to pause the current splitting progress.
def FoxitPDFSDKPython2.SplitPDFDocCallback.ProgressNotify | ( | before_splitting_file_name, | |
after_split_file_path, | |||
split_page_count, | |||
total_page_count | |||
) |
A callback function used to notify the current splitting progress.
[in] | before_splitting_file_name | The file name of the original PDF document before splitting. |
[in] | after_split_file_path | The file path of the PDF document generated by splitting. |
[in] | split_page_count | The count of pages to be split in the current PDF document. |
[in] | total_page_count | The total count of pages in the current PDF documen. |
def FoxitPDFSDKPython2.SplitPDFDocCallback.ResultNotify | ( | result_array | ) |
A callback function used to notify the current split result.
[in] | result_array | An array of SplitFileResult objects. When the splitting is completed, the result information of each file split will be notified. |