PropSheet_InsertPage macro (prsht.h)
Inserts a new page into an existing property sheet. The page can be inserted either at a specified index or after a specified page. You can use this macro or send the PSM_INSERTPAGE message explicitly.
Syntax
BOOL PropSheet_InsertPage(
HWND hDlg,
HWND index,
HWND hpage
);
Parameters
hDlg
Type: HWND
Handle to the property sheet.
index
Type: HWND
Where the page is to be inserted. Set index to NULL to make the new page the first page. To specify where the new page is to be inserted, you can either pass an index or an existing page's HPROPSHEETPAGE handle.
hpage
Type: HWND
Handle to the page to be inserted. The page must first be created by a call to the CreatePropertySheetPage function.
Return value
Type: BOOL
Returns a nonzero value if the page was successfully inserted, or zero otherwise.
Remarks
The pages after the insertion point are shifted to the right to accommodate the new page.
The property sheet is not resized to fit the new page. Do not make the new page larger than the property sheet's largest page.
A number of messages and one function call occur while the property sheet is manipulating the list of pages. While this action is taking place, attempting to modify the list of pages will have unpredictable results. Accordingly, you should not use the PropSheet_InsertPage macro in your implementation of PropSheetPageProc or while handling the following notifications and Windows messages.
If you need to modify a property sheet page while you are handling one of these messages or while PropSheetPageProc is in operation, post yourself a private Windows message. Your application will not receive that message until after the property sheet manager has finished its tasks. Then you can modify the list of pages.The following notifications are also affected by property sheet modification.
You can add or remove pages in response to these notifications, provided that you return (via DWL_MSGRESULT) a nonzero value to specify the desired new page. Note, however, that if you insert a page that is located before the current page (that has a smaller index than the current page), PSN_KILLACTIVE might be sent to the wrong page.Requirements
Requirement | Value |
---|---|
Minimum supported client | Windows Vista [desktop apps only] |
Minimum supported server | Windows Server 2003 [desktop apps only] |
Target Platform | Windows |
Header | prsht.h |