Share via


CPropertyPage::m_psp

m_psp es una estructura cuyos miembros almacenan las características de PROPSHEETPAGE.

PROPSHEETPAGE m_psp;

Comentarios

Utilice esta estructura para inicializar la apariencia de una página de propiedades después de que se haya generado.

Para obtener más información sobre esta estructura, incluida una lista de los miembros, vea PROPSHEETPAGE en Windows SDK.

Ejemplo

CPropertySheet sheet(_T("Simple PropertySheet"));

// Change the settings of the three pages to enable property sheet's 
// Help button when the page is active.  CStylePage, CShapePage, and 
// CColorPage are CPropertyPage-derived classes.
CStylePage pageStyle;
pageStyle.m_psp.dwFlags |= PSP_HASHELP;

CColorPage pageColor;
pageColor.m_psp.dwFlags |= PSP_HASHELP;

CShapePage pageShape;
pageShape.m_psp.dwFlags |= PSP_HASHELP;

sheet.AddPage(&pageStyle);
sheet.AddPage(&pageColor);
sheet.AddPage(&pageShape);

sheet.SetWizardMode();

sheet.DoModal();

Requisitos

encabezado: afxdlgs.h

Vea también

Referencia

Clase de CPropertyPage

Gráfico de jerarquía

Clase de CPropertySheet

PROPSHEETPAGE