PROPSHEETPAGEA_V2 structure (prsht.h)

Defines a page in a property sheet.

Note

This structure is not intended to be used directly in your code. Instead, use the PROPSHEETPAGE structure.

Syntax

typedef struct _PROPSHEETPAGEA_V2 {
  LPCSTR pszHeaderTitle;
  LPCSTR pszHeaderSubTitle;
} PROPSHEETPAGEA_V2, *LPPROPSHEETPAGEA_V2;

Members

pszHeaderTitle

Type: LPCTSTR

Version 5.80 or later. Title of the header area. To use this member under the Wizard97-style wizard, you must also do the following:

  • Set the PSP_USEHEADERTITLE flag in the dwFlags member.
  • Set the PSH_WIZARD97 flag in the dwFlags member of the page's PROPSHEETHEADER structure.
  • Make sure that the PSP_HIDEHEADER flag in the dwFlags member is not set.

pszHeaderSubTitle

Type: LPCTSTR

Version 5.80. Subtitle of the header area. To use this member, you must do the following:

  • Set the PSP_USEHEADERSUBTITLE flag in the dwFlags member.
  • Set the PSH_WIZARD97 flag in the dwFlags member of the page's PROPSHEETHEADER structure.
  • Make sure that the PSP_HIDEHEADER flag in the dwFlags member is not set.
Note  This member is ignored when using the Aero-style wizard (PSH_AEROWIZARD).
 

Remarks

Comctl32.dll version 6 and later are not redistributable. To use Comctl32.dll version 6 or later, specify the .dll file in a manifest. For more information on manifests, see Enabling Visual Styles.

Requirements

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