Foxit PDF Conversion SDK
FoxitPDFConversionSDKPython2.ConvertCallback Class Reference

Inherits FoxitPDFConversionSDKPython2._object.

Public Member Functions

def NeedToPause ()
 A callback function used to pause the current conversion progress. More...
 
def ProgressNotify (converted_count, total_count)
 A callback function used to notify the current conversion progress. More...
 

Detailed Description

This class represents a callback object used to pause and notify the conversion progress during the converting process. All the pure virtual functions in this class are used as callback functions and should be implemented by user.

Member Function Documentation

◆ NeedToPause()

def FoxitPDFConversionSDKPython2.ConvertCallback.NeedToPause ( )

A callback function used to pause the current conversion progress.

Returns
true means to pause now, while false means not to pause now.

◆ ProgressNotify()

def FoxitPDFConversionSDKPython2.ConvertCallback.ProgressNotify (   converted_count,
  total_count 
)

A callback function used to notify the current conversion progress.

Parameters
[in]converted_countThe converted page count.
[in]total_countThe total page count.
Returns
None.