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.
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 EnumDesktopProc(
string desktop,
IntPtr lParam
)
Public Delegate Function EnumDesktopProc (
desktop As String,
lParam As IntPtr
) As Boolean
Dim instance As New EnumDesktopProc(AddressOf HandlerMethod)
public delegate bool EnumDesktopProc(
String^ desktop,
[InAttribute] IntPtr lParam
)
type EnumDesktopProc =
delegate of
desktop : string *
lParam : IntPtr -> bool
No code example is currently available or this language may not be supported.
- desktop String
-
The name of the desktop.
- lParam IntPtr
-
An application-defined value specified in the EnumDesktops(IntPtr, DelegatesEnumDesktopProc, IntPtr) function.
Boolean
To continue enumeration, the callback function must return
.
To stop enumeration, it must return
.