Compartir a través de


CPropertySheet::m_psh

Una estructura cuyos miembros almacenan las características de PROPSHEETHEADER.

Comentarios

Utilice esta estructura para inicializar el aspecto de la hoja de propiedades después de que se haya generado pero antes de que se muestra con la función miembro de DoModal . Por ejemplo, establezca el miembro de dwSize de m_psh el tamaño que desee la hoja de propiedades para obtener.

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

Ejemplo

// This code fragment shows how to change CPropertySheet's settings  
// before it is shown.  After the changes, CPropertySheet has the  
// caption "Simple Properties", no "Apply" button, and the 
// second page (CColorPage) initially on top.  

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

CStylePage stylePage;
CColorPage colorPage;
CShapePage shapePage;
dlgPropertySheet.AddPage(&stylePage);
dlgPropertySheet.AddPage(&colorPage);
dlgPropertySheet.AddPage(&shapePage);

dlgPropertySheet.m_psh.dwFlags |= PSH_NOAPPLYNOW | PSH_PROPTITLE;
dlgPropertySheet.m_psh.pszCaption = _T("Simple");
dlgPropertySheet.m_psh.nStartPage = 1;

dlgPropertySheet.DoModal();

Requisitos

encabezado: afxdlgs.h

Vea también

Referencia

CPropertySheet Class

Gráfico de jerarquías

CPropertySheet::DoModal