Click or drag to resize

FFI_SetTimerCallback Delegate

This method installs a system timer. A time-out value is specified, and every time a time-out occurs, the system passes a message to the TimerProc callback function.

Namespace: Patagames.Pdf
Assembly: Patagames.Pdf (in Patagames.Pdf.dll) Version: 4.94.2704
Syntax
public delegate int FFI_SetTimerCallback(
	FPDF_FORMFILLINFO pThis,
	int uElapse,
	TimerCallback lpTimerFunc
)

Parameters

pThis  FPDF_FORMFILLINFO
Pointer to the interface structure itself.
uElapse  Int32
Specifies the time-out value, in milliseconds.
lpTimerFunc  TimerCallback
A pointer to the callback function-TimerCallback.

Return Value

Int32
The timer identifier of the new timer if the function is successful. An application passes this value to the FFI_KillTimer method to kill the timer. Nonzero if it is successful; otherwise, it is zero.
Remarks
Required: Yes.
See Also