Поделиться через


CWindow::HideCaret

Hides the system caret.

BOOL HideCaret( ) throw();

Заметки

See HideCaret in the Windows SDK.

Пример

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

Требования

Header: atlwin.h

См. также

Основные понятия

CWindow Class

CWindow Members

CWindow::ShowCaret