 |
EventHelperHookProc Delegate |
Defines the common dialog box hook procedure that is overridden to add specific
functionality to a common dialog box.
CommonDialog.HookProc Method Namespace: Xcalibur.NativeMethods.V2.EventsAssembly: Xcalibur.NativeMethods.V2 (in Xcalibur.NativeMethods.V2.dll) Version: 1.0.1.0
Syntaxpublic delegate int HookProc(
int code,
IntPtr wParam,
IntPtr lParam
)
Public Delegate Function HookProc (
code As Integer,
wParam As IntPtr,
lParam As IntPtr
) As Integer
public delegate int HookProc(
int code,
IntPtr wParam,
IntPtr lParam
)
type HookProc =
delegate of
code : int *
wParam : IntPtr *
lParam : IntPtr -> intParameters
- code Int32
- The handle to the dialog box window.
- wParam IntPtr
- The wParam value passed to the current hook procedure. The meaning of
this parameter depends on the type of hook associated with the current hook chain.
- lParam IntPtr
- The lParam value passed to the current hook procedure. The meaning of
this parameter depends on the type of hook associated with the current hook chain.
Return Value
Int32
See Also