DelegatesEnumDesktopProc Delegate

An application-defined callback function used with the EnumDesktops(IntPtr, DelegatesEnumDesktopProc, IntPtr) function. It receives a desktop name.

The DESKTOPENUMPROC type defines a pointer to this callback function.

DelegatesEnumDesktopProc 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 EnumDesktopProc(
	string desktop,
	IntPtr lParam
)

Parameters

desktop  String
The name of the desktop.
lParam  IntPtr
An application-defined value specified in the EnumDesktops(IntPtr, DelegatesEnumDesktopProc, IntPtr) function.

Return Value

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

Remarks

See Also