DelegatesEnumWindowsProc Delegate
Namespace: DevCase.Win32.DelegatesAssembly: DevCase.net48 (in DevCase.net48.dll) Version: 6.0.0.0 (6.0)
XMLNS for XAML: Not mapped to an xmlns.
public delegate bool EnumWindowsProc(
IntPtr hWnd,
IntPtr lParam
)
Public Delegate Function EnumWindowsProc (
hWnd As IntPtr,
lParam As IntPtr
) As Boolean
Dim instance As New EnumWindowsProc(AddressOf HandlerMethod)
public delegate bool EnumWindowsProc(
IntPtr hWnd,
IntPtr lParam
)
type EnumWindowsProc =
delegate of
hWnd : IntPtr *
lParam : IntPtr -> bool
No code example is currently available or this language may not be supported.
- hWnd IntPtr
-
A handle to a top-level window.
- lParam IntPtr
-
The application-defined value given in EnumWindows(DelegatesEnumWindowsProc, IntPtr)
or EnumDesktopWindows(IntPtr, DelegatesEnumWindowsProc, IntPtr) functions.
Boolean
To continue enumeration, the callback function must return
;
to stop enumeration, it must return
.