共用方式為


CWindow::HideCaret

隱藏系統游標。

BOOL HideCaret( ) throw();

備註

請參閱在 Windows SDK的 HideCaret

範例

//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 類別

CWindow::ShowCaret