/// <summary>
 /// Draws a polygon defined by an array of PointF structures.
 /// </summary>
 /// <param name="pen">Pen object that determines the color, width, and style of the polygon.</param>
 /// <param name="points">Array of PointF structures that represent the vertices of the polygon.</param>
 internal void DrawPolygon(
     Pen pen,
     PointF[] points
     )
 {
     RenderingObject.DrawPolygon(pen, points);
 }