CWindow::HideCaret

Blendet das Caretzeichen aus.

BOOL HideCaret( ) throw();

Hinweise

Siehe HideCaret in Windows SDK.

Beispiel

//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();

Anforderungen

Header: atlwin.h

Siehe auch

Referenz

CWindow-Klasse

CWindow::ShowCaret