次の方法で共有


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