CWindow::SetWindowText

Modifica il testo della finestra.

BOOL SetWindowText(
   LPCTSTR lpszString 
) throw();

Note

Vedere SetWindowText in Windows SDK.

Esempio

//The following example attaches an HWND to the CWindow object and 
//calls CWindow::SetWindowText() to set the new title-text of the 
//window

CWindow myWindow;
myWindow.Attach(hWnd);
myWindow.SetWindowText(_T("Hello ATL"));

Requisiti

Header: atlwin.h

Vedere anche

Riferimenti

Classe di CWindow

CWindow::GetWindowText