HideCaret 함수는 Caret을 보이지 않도록 합니다.
Declare Function HideCaret Lib "user32" (ByVal hwnd As Integer) As Integer
▶VB.NET 선언
HideCaret(handle)
▶VB.NET 호출
[DllImport("user32.dll")]
public static extern int HideCaret(int hwnd);
▶C# 선언
HideCaret(handle);
▶C# 호출
HideCaret함수 호출시 인수로는 Caret이 표시되고 있는 개체의 Handle을 지정합니다.
mciSendString - MCI 장치 구동 하기 (0) | 2019.08.12 |
---|---|
GetCaretPos - 표시되는 Caret의 위치반환 (0) | 2019.08.12 |
HideCaret - Caret 숨김 (0) | 2019.08.12 |
ShowCaret - 생성한 Caret 보이기 (0) | 2019.08.12 |
CreateCaret - Caret 생성 (0) | 2019.08.12 |
GetComputerName - Computer Name 보기 (0) | 2019.08.12 |
댓글 영역