Inherits SystemIDisposable.
|
virtual void | FocusGotOnControl (Control control, string value) |
| A callback function which is triggered when the focus is set to a form control. More...
|
|
virtual void | FocusLostFromControl (Control control, string value) |
| A callback function which is triggered when the focus is lost from a form control. More...
|
|
virtual int | GetVersion () |
| Get the version of derived implementation, for compatibility reason. More...
|
|
virtual bool | KillTimer (int timer_id) |
| A callback function used to kill the timer event by timer identifier. More...
|
|
virtual void | Refresh (PDFPage page, RectF rect) |
| A callback function used to refresh the specified area on a specified page. More...
|
|
virtual void | Release () |
| A callback function used to release current callback object itself. More...
|
|
virtual bool | SetTimerCallback (int elapse, TimerCallback timer, out int out_timer_id) |
| A callback function used to set a system timer. More...
|
|
This class represents a callback object to assist form filler. All the pure virtual functions in this class are used as callback functions and should be implemented by user.
void foxit.pdf.interform.FillerAssistCallback.FocusGotOnControl |
( |
Control |
control, |
|
|
string |
value |
|
) |
| |
|
inlinevirtual |
A callback function which is triggered when the focus is set to a form control.
This callback function supports text field, combo box field, list box field, push button field, check box field, radio button field.
- Parameters
-
[in] | control | The form control object to which the focus is set. |
[in] | value | The value of form field associated with the control. If the control belongs to a push button field, this value would always be an empty string. |
- Returns
- None.
void foxit.pdf.interform.FillerAssistCallback.FocusLostFromControl |
( |
Control |
control, |
|
|
string |
value |
|
) |
| |
|
inlinevirtual |
A callback function which is triggered when the focus is lost from a form control.
This callback function supports text field, combo box field, list box field, push button field, check box field, radio button field.
- Parameters
-
[in] | control | The form control object, from which the focus is lost. |
[in] | value | The value of form field associated with the control. If the control belongs to a push button field, this value would always be an empty string. |
- Returns
- None.