PropSheetPageProc Delegate
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Specifies a callback function that a property sheet calls when a page is created and when the page is about to be destroyed.
This API supports the product infrastructure and is not intended to be used directly from your code.
public delegate int PropSheetPageProc(IntPtr hwnd, int uMsg, IntPtr lParam);
public delegate int PropSheetPageProc(IntPtr hwnd, int uMsg, IntPtr lParam);
type PropSheetPageProc = delegate of nativeint * int * nativeint -> int
Public Delegate Function PropSheetPageProc(hwnd As IntPtr, uMsg As Integer, lParam As IntPtr) As Integer
Parameters
- hwnd
-
IntPtr
nativeint
Reserved; must be null (Nothing in Visual Basic).
- uMsg
- Int32
An action flag specifying that a page or a dialog box for a page is being created or a page is being destroyed.
- lParam
-
IntPtr
nativeint
A pointer to a structure defining the page being created or destroyed.
Return Value
The value of uMsg.
Remarks
For more information about programming with the PropSheetPageProc delegate and the Microsoft Management Console (MMC), see the MMC Programmer's Guide.