Foxit PDF SDK
<FSDocEventCallback> Protocol Reference

Inherits <NSObject>.

Instance Methods

(void) - onDocOpened:error_code:
 Triggered when a PDF document is opened. More...
 
(void) - onDocSaved:error_code:
 Triggered when a PDF document is saved. More...
 
(void) - onDocWillDestroy:
 Triggered when a PDF document will be destroyed. More...
 
(void) - onDocWillOpen
 Triggered when the document will be opened. More...
 
(void) - onDocWillSave:
 Triggered when a PDF document will be saved. More...
 

Detailed Description

This class represents a callback object used to listen PDF document event. All the pure virtual functions in this class are used as callback functions and should be implemented by user in derived class. User can also re-write the virtual functions in this class in custom way.

Method Documentation

◆ onDocOpened:error_code:()

- (void) onDocOpened: (FSPDFDoc *)  document
error_code: (FSErrorCode error_code 
required

Triggered when a PDF document is opened.

Parameters
[in]documentA PDF document object which is opened.
[in]error_codeError code which represents the error state when opening the PDF document. Please refer to values starting from FSErrSuccess and this would be one of these values.
Returns
None.

◆ onDocSaved:error_code:()

- (void) onDocSaved: (FSPDFDoc *)  document
error_code: (FSErrorCode error_code 
required

Triggered when a PDF document is saved.

Parameters
[in]documentA PDF document object which is saved.
[in]error_codeError code which represents the error state when saving the PDF document. Please refer to values starting from FSErrSuccess and this would be one of these values.
Returns
None.

◆ onDocWillDestroy:()

- (void) onDocWillDestroy: (FSPDFDoc *)  document
required

Triggered when a PDF document will be destroyed.

Parameters
[in]documentA PDF document object which will be destroyed.
Returns
None.

◆ onDocWillOpen()

- (void) onDocWillOpen
required

Triggered when the document will be opened.

Returns
None.

◆ onDocWillSave:()

- (void) onDocWillSave: (FSPDFDoc *)  document
required

Triggered when a PDF document will be saved.

Parameters
[in]documentA PDF document object which will be saved.
Returns
None.