CPropertySheet::m_psh
Uma estrutura cujos membros armazenem as características de PROPSHEETHEADER.
Comentários
Use essa estrutura para inicializar a aparência da folha de propriedades depois que é construída mas antes de ser exibida com a função de membro de DoModal .Por exemplo, definir o membro de dwSize de m_psh o tamanho desejado a folha de propriedades para ter.
Para obter mais informações sobre essa estrutura, incluindo uma lista de seus membros, consulte PROPSHEETHEADER em Windows SDK.
Exemplo
// 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
Cabeçalho: afxdlgs.h