CWindow::HideCaret

Nasconde il cursore di sistema.

BOOL HideCaret( ) throw();

Note

Vedere HideCaret in Windows SDK.

Esempio

//The following example attaches an HWND to the CWindow object and 
//calls CWindow::HideCaret() to hide the caret of the window owning 
//the caret

CWindow myWindow;
myWindow.Attach(hWndEdit);
myWindow.HideCaret();

Requisiti

Header: atlwin.h

Vedere anche

Riferimenti

Classe di CWindow

CWindow::ShowCaret