Hinweis
Für den Zugriff auf diese Seite ist eine Autorisierung erforderlich. Sie können versuchen, sich anzumelden oder das Verzeichnis zu wechseln.
Für den Zugriff auf diese Seite ist eine Autorisierung erforderlich. Sie können versuchen, das Verzeichnis zu wechseln.
Remarks
m_psp is a structure whose members store the characteristics of . Use this structure to initialize the appearance of a property page after it is constructed.
For more information on this structure, including a listing of its members, see PROPSHEETPAGE in the Windows SDK Programmer’s Reference.
Example
// Declare a CPropertySheet object.
CPropertySheet sheet("Simple PropertySheet");
// Change the settings of the two pages to enable property sheet's
// Help button when the page is active. Both CStylePage and
// CColorPage are CPropertyPage-derived classes.
CStylePage style;
style.m_psp.dwFlags |= PSP_HASHELP;
CColorPage color;
color.m_psp.dwFlags |= PSP_HASHELP;
sheet.AddPage(&style);
sheet.AddPage(&color);
// Display a modal CPropertySheet dialog.
sheet.DoModal();
CPropertyPage Overview | Class Members | Hierarchy Chart
See Also CPropertySheet,