Important: |
---|
This is retired content. This content is outdated and is no longer being maintained. It is provided as a courtesy for individuals who are still using these technologies. This content may contain URLs that were valid when originally published, but now link to sites or pages that no longer exist. |
This function is an application-defined callback function that the system calls when the property sheet is being created and initialized.
void CALLBACK PropSheetProc( HWND hwndDlg , UINT uMsg , LPARAM lParam );
Parameters
Value | Description |
---|---|
PSCB_INITIALIZED | Indicates that the property sheet is being initialized. The lParamvalue is zero for this message. |
PSCB_PRECREATE | Indicates that the property sheet is about to be created. The hwndDlgparameter is NULL, and the lParamparameter is the address of a dialog template in memory. This template is in the form of a DLGTEMPLATEstructure followed by one or more DLGITEMTEMPLATEstructures. |
Return Values
None.
Remarks
To enable a PropSheetProccallback function, use the PROPSHEETHEADERstructure when you call the PropertySheetfunction to create the property sheet. Use the pfnCallbackmember to specify an address of the callback function, and set the PSP_USECALLBACK flag in the dwFlagsmember.
PropSheetProcis a placeholder for the application-defined function name. The PFNPROPSHEETCALLBACK type is the address of a PropSheetProccallback function.
Requirements
Runs on | Versions | Defined in | Include | Link to |
---|---|---|---|---|
Windows CE OS | 1.0 and later | Prsht.h |
Note This API is part of the complete Windows CE OS package as provided by Microsoft. The functionality of a particular platform is determined by the original equipment manufacturer (OEM) and some devices may not support this API.
See Also
PropertySheet, DLGITEMTEMPLATE, DLGTEMPLATE, PROPSHEETHEADER