PSM_INSERTPAGE message

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 send this message explicitly or by using the PropSheet_InsertPage macro.

Parameters

wParam

Where the page is to be inserted. Set this parameter 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.

Value Meaning
index
If the wParam parameter is less than MAXUSHORT (the largest unsigned short integer), the wParam specifies the zero-based index for the new page. For example, to make the inserted page the third page on the property sheet, set wParam to 2. To make it the first page, set wParam to 0. If wParam has a value greater than the number of pages and less than MAXUSHORT, the page will be appended.
hpageInsertAfter
If you set the wParam parameter to an existing page's HPROPSHEETPAGE handle, the new page will be inserted after it.

lParam

Handle to the page to be inserted. The page must first be created by a call to the CreatePropertySheetPage function.

Return value

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 PSM_INSERTPAGE message 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.

Note

This message is not supported when using the Aero wizard style (PSH_AEROWIZARD).

Requirements

Requirement Value
Minimum supported client
Windows Vista [desktop apps only]
Minimum supported server
Windows Server 2003 [desktop apps only]
Header
Prsht.h