Foxit PDF SDK
FSDK.AnnotationSummary Class Reference

Public Member Functions

 constructor (document)
 Constructor. More...
 
 IsEmpty ()
 Check whether current object is empty or not. More...
 
 SetCallback (callback)
 Set a callback object for annotation summary. More...
 
 StartSummarize (dest_file, settings, pause)
 Start to summarize annotation. More...
 
 StartSummarize (dest_file_path, settings, pause)
 Start to summarize annotation. More...
 
 StartSummarize (dest_file_path, settings, pause)
 Start to summarize annotation. More...
 

Detailed Description

This class can be used to summarize annotation and genearte a PDF file as the result document.

Member Function Documentation

◆ constructor()

FSDK.AnnotationSummary.constructor ( document  )

Constructor.

Parameters
[in]documentA valid PDF document. It should has been loaded successfully.

◆ IsEmpty()

FSDK.AnnotationSummary.IsEmpty ( )

Check whether current object is empty or not.

When the current object is empty, that means current object is useless.

Returns
true means current object is empty, while false means not.

◆ SetCallback()

FSDK.AnnotationSummary.SetCallback ( callback  )

Set a callback object for annotation summary.

If this function is not called, that means no callback will be used.

Parameters
[in]callbackA FSDK.AnnotationSummaryCallback object which is implemented by user. User can change some information/data during summarizing annotations by this callback. Please ensure that the callback object keeps valid until the life-cycle of current AnnotationSummary object ends.
If this is null, that means to use default information/data.
Returns
None.

◆ StartSummarize() [1/3]

FSDK.AnnotationSummary.StartSummarize ( dest_file  ,
settings  ,
pause   
)

Start to summarize annotation.

It may take a long time to summarize annotation, so Foxit PDF SDK uses a progressive process to do this. If related source PDF document does not have any annotation whose type is supported (please refer to comment of function FSDK.AnnotationSummarySettings.SetAnnotType), or related source PDF document does not have any annotation, this function will throw exception FSDK.e_ErrUnknown.

Parameters
[in]dest_fileA FSDK.FileWriterCallback object which is implemented by user to store the data of annotation summary to a PDF file as result in custom method.
[in]settingsSetting data used to summarize annotation.
[in]pausePause object which decides if the summarizing process needs to be paused. This can be null which means not to pause during the parsing process. If this is not null, it should be a valid pause object implemented by user. Default value: null.
Returns
A progressive object. Please check the rate of current progress by function FSDK.Progressive.GetRateOfProgress. If the rate is not 100 yet, call function FSDK.Progressive.Continue to continue the progress until the progress is finished.

◆ StartSummarize() [2/3]

FSDK.AnnotationSummary.StartSummarize ( dest_file_path  ,
settings  ,
pause   
)

Start to summarize annotation.

It may take a long time to summarize annotation, so Foxit PDF SDK uses a progressive process to do this. If related source PDF document does not have any annotation whose type is supported (please refer to comment of function FSDK.AnnotationSummarySettings.SetAnnotType), or related source PDF document does not have any annotation, this function will throw exception FSDK.e_ErrUnknown.

Parameters
[in]dest_file_pathA full path to save a PDF file as the result of annotation summary. This should not be an empty string.
[in]settingsSetting data used to summarize annotation.
[in]pausePause object which decides if the summarizing process needs to be paused. This can be null which means not to pause during the parsing process. If this is not null, it should be a valid pause object implemented by user. Default value: null.
Returns
A progressive object. Please check the rate of current progress by function FSDK.Progressive.GetRateOfProgress. If the rate is not 100 yet, call function FSDK.Progressive.Continue to continue the progress until the progress is finished.

◆ StartSummarize() [3/3]

FSDK.AnnotationSummary.StartSummarize ( dest_file_path  ,
settings  ,
pause   
)

Start to summarize annotation.

It may take a long time to summarize annotation, so Foxit PDF SDK uses a progressive process to do this. If related source PDF document does not have any annotation whose type is supported (please refer to comment of function FSDK.AnnotationSummarySettings.SetAnnotType), or related source PDF document does not have any annotation, this function will throw exception FSDK.e_ErrUnknown.

Parameters
[in]dest_file_pathA full path to save a PDF file as the result of annotation summary. This should not be an empty string.
[in]settingsSetting data used to summarize annotation.
[in]pausePause object which decides if the summarizing process needs to be paused. This can be null which means not to pause during the parsing process. If this is not null, it should be a valid pause object implemented by user. Default value: null.
Returns
A progressive object. Please check the rate of current progress by function FSDK.Progressive.GetRateOfProgress. If the rate is not 100 yet, call function FSDK.Progressive.Continue to continue the progress until the progress is finished.