CPropertySheet::SetTitle
Especifica la leyenda de la hoja de propiedades (el texto mostrado en la barra de título de una ventana de marco).
void SetTitle(
LPCTSTR lpszText,
UINT nStyle = 0
);
Parámetros
nStyle
Especifica el estilo del título de la hoja de propiedades. El estilo debe especificarse en 0 o como PSH_PROPTITLE. Si el estilo se establece como PSH_PROPTITLE, la palabra “properties” aparece después del texto especificado como la leyenda. Por ejemplo, llamar a SetTitle(“Simple”, PSH_PROPTITLE) dará lugar a una leyenda de la hoja de propiedades “propiedades de Simple”.lpszText
Señala al texto que se va a utilizar como el título de la barra de título de la hoja de propiedades.
Comentarios
De forma predeterminada, una hoja de propiedades utiliza el parámetro caption en el constructor de la hoja de propiedades.
Ejemplo
// Declare a CPropertySheet object with a caption "Simple PropertySheet".
CPropertySheet dlgPropertySheet(_T("Simple PropertySheet"));
// Add three pages to the CPropertySheet object. CStylePage, CColorPage,
// and CShapePage are CPropertyPage-derived classes created
// by the Add Class wizard.
CStylePage stylePage;
CColorPage colorPage;
CShapePage shapePage;
dlgPropertySheet.AddPage(&stylePage);
dlgPropertySheet.AddPage(&colorPage);
dlgPropertySheet.AddPage(&shapePage);
// Change the caption of the CPropertySheet object
// from "Simple PropertySheet" to "Simple Properties".
dlgPropertySheet.SetTitle(_T("Simple"), PSH_PROPTITLE);
// Show the CPropertySheet object as MODAL.
dlgPropertySheet.DoModal();
Requisitos
encabezado: afxdlgs.h