 | 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.PdfAssembly: Patagames.Pdf (in Patagames.Pdf.dll) Version: 4.94.2704
Syntaxpublic delegate int FFI_SetTimerCallback(
FPDF_FORMFILLINFO pThis,
int uElapse,
TimerCallback lpTimerFunc
)
Public Delegate Function FFI_SetTimerCallback (
pThis As FPDF_FORMFILLINFO,
uElapse As Integer,
lpTimerFunc As TimerCallback
) As Integer
public delegate int FFI_SetTimerCallback(
FPDF_FORMFILLINFO^ pThis,
int uElapse,
TimerCallback^ lpTimerFunc
)
type FFI_SetTimerCallback =
delegate of
pThis : FPDF_FORMFILLINFO *
uElapse : int *
lpTimerFunc : TimerCallback -> int
/** @delegate */
public delegate int FFI_SetTimerCallback(
FPDF_FORMFILLINFO pThis,
int uElapse,
TimerCallback lpTimerFunc
)
function(pThis, uElapse, 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
Int32The 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.
RemarksRequired: Yes.
See Also