DelegatesEnumThreadWindowsProc Delegate
An application-defined callback function used with the
EnumThreadWindows(UInt32, DelegatesEnumThreadWindowsProc, IntPtr) function.
It receives the window handles associated with a thread.
The
WNDENUMPROC type defines a pointer to this callback function.
DelegatesEnumThreadWindowsProc is a placeholder for the application-defined function name.
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 EnumThreadWindowsProc(
IntPtr hWnd,
IntPtr lParam
)
Public Delegate Function EnumThreadWindowsProc (
hWnd As IntPtr,
lParam As IntPtr
) As Boolean
Dim instance As New EnumThreadWindowsProc(AddressOf HandlerMethod)
public delegate bool EnumThreadWindowsProc(
IntPtr hWnd,
IntPtr lParam
)
type EnumThreadWindowsProc =
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 window associated with the thread specified in the EnumThreadWindows(UInt32, DelegatesEnumThreadWindowsProc, IntPtr) function.
- lParam IntPtr
-
The application-defined value given in EnumThreadWindows(UInt32, DelegatesEnumThreadWindowsProc, IntPtr) functions.
Boolean
To continue enumeration, the callback function must return
;
to stop enumeration, it must return
.