728x90
DestroyCursor 함수는 지정한 Handle의 Mouse Cursor를 제거합니다.
Declare Function DestroyCursor Lib "user32" Alias "DestroyCursor" (ByVal hCursor As Integer) As Integer
- VB.NET 선언
DestroyCursor(Handle)
- VB.NET 호출
[DllImport("user32.dll")]
public static extern int DestroyCursor(int hCursor);
- C# 선언
DestroyCursor(Handle);
- C# 호출
DestroyCursor함수의 인수에는 제거하고자 하는 Cursor의 Handle을 지정합니다. 단, SystemCursor처럼 특정 Program에 제한받지 않고 Windows가 공통적으로 사용하는 Cursor이거나 현재 사용중인 Cursor의 경우에는 제거되지 않습니다.(반환값 0)
728x90
'.NET > Windows API for .NET' 카테고리의 다른 글
GetWindowRect - Window의 위치및 크기 반환 (0) | 2019.07.31 |
---|---|
DrawText - 화면에 Text문자열 출력 (0) | 2019.07.31 |
DrawFrameControl - Frame Control 그리기 (0) | 2019.07.31 |
GetWindowDC - 현재 Windows화면의 Device Context 구하기 (0) | 2019.07.31 |
GetDesktopWindow - 현재 Windows 화면의 Handle구하기 (0) | 2019.07.31 |