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


CWindow::HideCaret

Скрывает системный курсор.

BOOL HideCaret( ) throw();

Заметки

См. раздел HideCaret в 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::ShowCaret