LineTo

    LineTo - Line 그리기

    LineTo는 Window나 Control에 직선을 그리는 함수입니다. Declare Function LineTo Lib "gdi32" Alias "LineTo" (ByVal hdc As Integer, ByVal x As Integer, ByVal y As Integer) As Integer - VB.NET 선언 [DllImport("gdi32")] public static extern int LineTo(int hdc, int x, int y); - C# 선언 LineTo함수의 첫번째 인수는 Line을 그릴 Window나 Control의 Device Context가 기술되어야 합니다. [Windows API for .NET] - GetDC - Window및 Control의 Device Context ..