예제 #1
0
 /// <summary>
 /// Draws a series of line segments that connect an array of PointF structures.
 /// </summary>
 /// <param name="pen">Pen object that determines the color, width, and style of the line segments.</param>
 /// <param name="points">Array of PointF structures that represent the points to connect.</param>
 internal void DrawLines(
     Pen pen,
     PointF[] points
     )
 {
     RenderingObject.DrawLines(pen, points);
 }