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.

Definition

Namespace: DevCase.Win32.Delegates
Assembly: 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
)

Parameters

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.

Return Value

Boolean
To continue enumeration, the callback function must return ; to stop enumeration, it must return .

Remarks

See Also