Alsing.Drawing.GDI.GDISurface.DrawLine C# (CSharp) Method

DrawLine() public method

public DrawLine ( Color color, Point p1, Point p2 ) : void
color Color
p1 Point
p2 Point
return void
        public void DrawLine(Color color, Point p1, Point p2)
        {
            var p = new GDIPen(color, 1);
            DrawLine(p, p1, p2);
            p.Dispose();
        }

Same methods

GDISurface::DrawLine ( GDIPen pen, Point p1, Point p2 ) : void