DelegatesEnumChildWindowsProc Delegate
An application-defined callback function used with the
EnumChildWindows(IntPtr, DelegatesEnumChildWindowsProc, IntPtr) function.
It receives the child window handles.
The
WNDENUMPROC type defines a pointer to this callback function.
DelegatesEnumChildWindowsProc 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 EnumChildWindowsProc(
IntPtr hWnd,
IntPtr lParam
)
Public Delegate Function EnumChildWindowsProc (
hWnd As IntPtr,
lParam As IntPtr
) As Boolean
Dim instance As New EnumChildWindowsProc(AddressOf HandlerMethod)
public delegate bool EnumChildWindowsProc(
IntPtr hWnd,
IntPtr lParam
)
type EnumChildWindowsProc =
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 child window of the parent window specified in EnumChildWindows(IntPtr, DelegatesEnumChildWindowsProc, IntPtr) function.
- lParam IntPtr
-
The application-defined value given in EnumChildWindows(IntPtr, DelegatesEnumChildWindowsProc, IntPtr) function.
Boolean
To continue enumeration, the callback function must return
;
to stop enumeration, it must return
.