ELLIPSE

    Ellipse - Window나 Control에 타원그리기

    Ellipse함수는 Window나 Control에 타원형의 그림을 그리는 함수입니다. Declare Function Ellipse Lib "gdi32" Alias "Ellipse" (ByVal hdc As Integer, ByVal x1 As Integer, ByVal y1 As Integer, ByVal x2 As Integer, ByVal y2 As Integer) As Integer ▶VB.NET 선언 [DllImport("gdi32")] public static extern int Ellipse(int hdc, int x1, int y1, int x2, int y2); ▶C# 선언 Ellipse함수의 첫번째 인수로는 실제 타원을 그릴 Window나 Control의 Device Context가 기술..