Graphics.DrawLines Method (Pen, Point[])
.NET Framework 3.0
Draws a series of line segments that connect an array of Point structures.
Namespace: System.Drawing
Assembly: System.Drawing (in system.drawing.dll)
Assembly: System.Drawing (in system.drawing.dll)
The following code example is designed for use with Windows Forms, and it requires PaintEventArgse, which is a parameter of the Paint event handler. The code performs the following actions:
-
Creates a black pen.
-
Creates an array of points of segments of the line.
-
Draws the connected line segments to the screen.
public: void DrawLinesPoint( PaintEventArgs^ e ) { // Create pen. Pen^ pen = gcnew Pen( Color::Black,3.0f ); // Create array of points that define lines to draw. array<Point>^ points = {Point(10,10),Point(10,100),Point(200,50),Point(250,300)}; //Draw lines to screen. e->Graphics->DrawLines( pen, points ); }
public void DrawLinesPoint(PaintEventArgs e)
{
// Create pen.
Pen pen = new Pen(Color.get_Black(), 3);
// Create array of points that define lines to draw.
Point points[] = {new Point(10, 10), new Point(10, 100),
new Point(200, 50), new Point(250, 300)};
//Draw lines to screen.
e.get_Graphics().DrawLines(pen, points);
} //DrawLinesPoint
Windows 98, Windows Server 2000 SP4, Windows Millennium Edition, Windows Server 2003, Windows XP Media Center Edition, Windows XP Professional x64 Edition, Windows XP SP2, Windows XP Starter Edition
The Microsoft .NET Framework 3.0 is supported on Windows Vista, Microsoft Windows XP SP2, and Windows Server 2003 SP1.Community Additions
ADD
Show: