728x90
ShowCaret함수는 CreateCaret함수에 의해 생성된 Caret를 화면에 표시하도록 합니다.
Declare Function ShowCaret Lib "user32" (ByVal hwnd As Integer) As Integer
▶VB.NET 선언
ShowCaret(Handle)
▶VB.NET 호출
[DllImport("user32.dll")]
public static extern int ShowCaret(int hwnd);
▶C# 선언
ShowCaret(Handle);
▶C# 호출
ShowCaret의 인수로는 Caret이 생성된 Form이나 Control의 Handle값을 넘겨주면 됩니다.
728x90
'.NET > Windows API for .NET' 카테고리의 다른 글
GetCaretPos - 표시되는 Caret의 위치반환 (0) | 2019.08.12 |
---|---|
HideCaret - Caret 숨김 (0) | 2019.08.12 |
CreateCaret - Caret 생성 (0) | 2019.08.12 |
GetComputerName - Computer Name 보기 (0) | 2019.08.12 |
SetFocus - Window Form및 Control Focus 설정 (0) | 2019.08.12 |