CWindow::GetExStyle

Recupera gli stili estesi della finestra.

DWORD GetExStyle( ) const throw();

Valore restituito

Gli stili estesi della finestra.

Note

Per recuperare gli stili normale della finestra, chiamare GetStyle.

Esempio

//The following example attaches an HWND to the CWindow object and 
//calls CWindow::GetExStyle() to retrieve the extended styles of 
//the window

CWindow myWindow;
myWindow.Attach(hWnd);
DWORD dwExStyles = myWindow.GetExStyle();

Requisiti

Header: atlwin.h

Vedere anche

Riferimenti

Classe di CWindow

CWindow::ModifyStyleEx