# GrapeCity.Documents.Drawing.GcGraphics.DrawPolygon

## Content

<div class="doc-site-dotnet-api-container">



<h1 id="GrapeCity_Documents_Drawing_GcGraphics_DrawPolygon_" data-uid="GrapeCity.Documents.Drawing.GcGraphics.DrawPolygon*">DrawPolygon Method
</h1>
<div class="markdown level0 summary"></div>
<div class="markdown level0 conceptual"></div>



<a id="GrapeCity_Documents_Drawing_GcGraphics_DrawPolygon_" data-uid="GrapeCity.Documents.Drawing.GcGraphics.DrawPolygon*"></a>
<h4 id="GrapeCity_Documents_Drawing_GcGraphics_DrawPolygon_System_Drawing_PointF___System_Drawing_Color_System_Single_GrapeCity_Documents_Drawing_DashStyle_" data-uid="GrapeCity.Documents.Drawing.GcGraphics.DrawPolygon(System.Drawing.PointF[],System.Drawing.Color,System.Single,GrapeCity.Documents.Drawing.DashStyle)">DrawPolygon(PointF[], Color, float, DashStyle)</h4>
<div class="markdown level1 summary"><p>Draws a polygon specified by an array of points, using a specified line color, width and style.</p>
<p>
If the value of lineStyle parameter is not <a class="xref" href="GrapeCity.Documents.Drawing.DashStyle.html#GrapeCity_Documents_Drawing_DashStyle_Solid">Solid</a>, the polygon is drawn with a <a class="xref" href="GrapeCity.Documents.Drawing.Pen.html">Pen</a>
having <a class="xref" href="GrapeCity.Documents.Drawing.Pen.LineCap.html#GrapeCity_Documents_Drawing_Pen_LineCap">LineCap</a> set to <a class="xref" href="GrapeCity.Documents.Drawing.PenLineCap.html#GrapeCity_Documents_Drawing_PenLineCap_Square">Square</a> instead of <a class="xref" href="GrapeCity.Documents.Drawing.PenLineCap.html#GrapeCity_Documents_Drawing_PenLineCap_Flat">Flat</a>.
</p>
</div>
<div class="markdown level1 conceptual"></div>
<h5 class="declaration">Declaration</h5>
<div class="codewrapper">
  <pre><code class="lang-csharp hljs">public void DrawPolygon(PointF[] points, Color lineColor, float lineWidth, DashStyle lineStyle = DashStyle.Solid)</code></pre>
</div>
<div class="codewrapper">
  <pre><code class="lang-vbnet hljs">Public Sub DrawPolygon(points As PointF(), lineColor As Color, lineWidth As Single, Optional lineStyle As DashStyle = DashStyle.Solid)</code></pre>
</div>
<h5 class="parameters">Parameters</h5>
<table class="table table-bordered table-condensed">
  <thead>
    <tr>
      <th>Type</th>
      <th>Name</th>
      <th>Description</th>
    </tr>
  </thead>
  <tbody>
    <tr>
      <td><a class="xref" href="https://learn.microsoft.com/dotnet/api/system.drawing.pointf">PointF</a>[]</td>
      <td><span class="parametername">points</span></td>
      <td><p>An array of points specifying the polygon.</p>
</td>
    </tr>
    <tr>
      <td><a class="xref" href="https://learn.microsoft.com/dotnet/api/system.drawing.color">Color</a></td>
      <td><span class="parametername">lineColor</span></td>
      <td><p>The line color.</p>
</td>
    </tr>
    <tr>
      <td><a class="xref" href="https://learn.microsoft.com/dotnet/api/system.single">float</a></td>
      <td><span class="parametername">lineWidth</span></td>
      <td><p>The line width.</p>
</td>
    </tr>
    <tr>
      <td><a class="xref" href="GrapeCity.Documents.Drawing.DashStyle.html">DashStyle</a></td>
      <td><span class="parametername">lineStyle</span></td>
      <td><p>The line style (solid by default).</p>
</td>
    </tr>
  </tbody>
</table>


<a id="GrapeCity_Documents_Drawing_GcGraphics_DrawPolygon_" data-uid="GrapeCity.Documents.Drawing.GcGraphics.DrawPolygon*"></a>
<h4 id="GrapeCity_Documents_Drawing_GcGraphics_DrawPolygon_System_Drawing_PointF___System_Drawing_Color_System_Single_System_Single___" data-uid="GrapeCity.Documents.Drawing.GcGraphics.DrawPolygon(System.Drawing.PointF[],System.Drawing.Color,System.Single,System.Single[])">DrawPolygon(PointF[], Color, float, float[])</h4>
<div class="markdown level1 summary"><p>Draws a polygon specified by an array of points, using a specified line color, width and dash pattern.</p>
<p>
If the dashPattern array contains two or more items, the polygon is drawn with a <a class="xref" href="GrapeCity.Documents.Drawing.Pen.html">Pen</a>
having <a class="xref" href="GrapeCity.Documents.Drawing.Pen.LineCap.html#GrapeCity_Documents_Drawing_Pen_LineCap">LineCap</a> set to <a class="xref" href="GrapeCity.Documents.Drawing.PenLineCap.html#GrapeCity_Documents_Drawing_PenLineCap_Square">Square</a> instead of <a class="xref" href="GrapeCity.Documents.Drawing.PenLineCap.html#GrapeCity_Documents_Drawing_PenLineCap_Flat">Flat</a>.
</p>
</div>
<div class="markdown level1 conceptual"></div>
<h5 class="declaration">Declaration</h5>
<div class="codewrapper">
  <pre><code class="lang-csharp hljs">public void DrawPolygon(PointF[] points, Color lineColor, float lineWidth, float[] dashPattern)</code></pre>
</div>
<div class="codewrapper">
  <pre><code class="lang-vbnet hljs">Public Sub DrawPolygon(points As PointF(), lineColor As Color, lineWidth As Single, dashPattern As Single())</code></pre>
</div>
<h5 class="parameters">Parameters</h5>
<table class="table table-bordered table-condensed">
  <thead>
    <tr>
      <th>Type</th>
      <th>Name</th>
      <th>Description</th>
    </tr>
  </thead>
  <tbody>
    <tr>
      <td><a class="xref" href="https://learn.microsoft.com/dotnet/api/system.drawing.pointf">PointF</a>[]</td>
      <td><span class="parametername">points</span></td>
      <td><p>An array of points specifying the polygon.</p>
</td>
    </tr>
    <tr>
      <td><a class="xref" href="https://learn.microsoft.com/dotnet/api/system.drawing.color">Color</a></td>
      <td><span class="parametername">lineColor</span></td>
      <td><p>The line color.</p>
</td>
    </tr>
    <tr>
      <td><a class="xref" href="https://learn.microsoft.com/dotnet/api/system.single">float</a></td>
      <td><span class="parametername">lineWidth</span></td>
      <td><p>The line width.</p>
</td>
    </tr>
    <tr>
      <td><a class="xref" href="https://learn.microsoft.com/dotnet/api/system.single">float</a>[]</td>
      <td><span class="parametername">dashPattern</span></td>
      <td><p>The dash pattern.</p>
</td>
    </tr>
  </tbody>
</table>


<a id="GrapeCity_Documents_Drawing_GcGraphics_DrawPolygon_" data-uid="GrapeCity.Documents.Drawing.GcGraphics.DrawPolygon*"></a>
<h4 id="GrapeCity_Documents_Drawing_GcGraphics_DrawPolygon_System_Drawing_PointF___GrapeCity_Documents_Drawing_Pen_" data-uid="GrapeCity.Documents.Drawing.GcGraphics.DrawPolygon(System.Drawing.PointF[],GrapeCity.Documents.Drawing.Pen)">DrawPolygon(PointF[], Pen)</h4>
<div class="markdown level1 summary"><p>Draws a polygon specified by an array of points, using a specified pen.</p>
</div>
<div class="markdown level1 conceptual"></div>
<h5 class="declaration">Declaration</h5>
<div class="codewrapper">
  <pre><code class="lang-csharp hljs">public void DrawPolygon(PointF[] points, Pen pen)</code></pre>
</div>
<div class="codewrapper">
  <pre><code class="lang-vbnet hljs">Public Sub DrawPolygon(points As PointF(), pen As Pen)</code></pre>
</div>
<h5 class="parameters">Parameters</h5>
<table class="table table-bordered table-condensed">
  <thead>
    <tr>
      <th>Type</th>
      <th>Name</th>
      <th>Description</th>
    </tr>
  </thead>
  <tbody>
    <tr>
      <td><a class="xref" href="https://learn.microsoft.com/dotnet/api/system.drawing.pointf">PointF</a>[]</td>
      <td><span class="parametername">points</span></td>
      <td><p>An array of points specifying the polygon.</p>
</td>
    </tr>
    <tr>
      <td><a class="xref" href="GrapeCity.Documents.Drawing.Pen.html">Pen</a></td>
      <td><span class="parametername">pen</span></td>
      <td><p>The pen to use.</p>
</td>
    </tr>
  </tbody>
</table>


<a id="GrapeCity_Documents_Drawing_GcGraphics_DrawPolygon_" data-uid="GrapeCity.Documents.Drawing.GcGraphics.DrawPolygon*"></a>
<h4 id="GrapeCity_Documents_Drawing_GcGraphics_DrawPolygon_GrapeCity_Documents_Common_Quadrilateral_System_Drawing_Color_System_Single_GrapeCity_Documents_Drawing_DashStyle_" data-uid="GrapeCity.Documents.Drawing.GcGraphics.DrawPolygon(GrapeCity.Documents.Common.Quadrilateral,System.Drawing.Color,System.Single,GrapeCity.Documents.Drawing.DashStyle)">DrawPolygon(Quadrilateral, Color, float, DashStyle)</h4>
<div class="markdown level1 summary"><p>Draws a polygon specified by an array of points, using a specified line color, width and style.</p>
<p>
If the value of lineStyle parameter is not <a class="xref" href="GrapeCity.Documents.Drawing.DashStyle.html#GrapeCity_Documents_Drawing_DashStyle_Solid">Solid</a>, the polygon is drawn with a <a class="xref" href="GrapeCity.Documents.Drawing.Pen.html">Pen</a>
having <a class="xref" href="GrapeCity.Documents.Drawing.Pen.LineCap.html#GrapeCity_Documents_Drawing_Pen_LineCap">LineCap</a> set to <a class="xref" href="GrapeCity.Documents.Drawing.PenLineCap.html#GrapeCity_Documents_Drawing_PenLineCap_Square">Square</a> instead of <a class="xref" href="GrapeCity.Documents.Drawing.PenLineCap.html#GrapeCity_Documents_Drawing_PenLineCap_Flat">Flat</a>.
</p>
</div>
<div class="markdown level1 conceptual"></div>
<h5 class="declaration">Declaration</h5>
<div class="codewrapper">
  <pre><code class="lang-csharp hljs">public void DrawPolygon(Quadrilateral quadrilateral, Color lineColor, float lineWidth, DashStyle lineStyle = DashStyle.Solid)</code></pre>
</div>
<div class="codewrapper">
  <pre><code class="lang-vbnet hljs">Public Sub DrawPolygon(quadrilateral As Quadrilateral, lineColor As Color, lineWidth As Single, Optional lineStyle As DashStyle = DashStyle.Solid)</code></pre>
</div>
<h5 class="parameters">Parameters</h5>
<table class="table table-bordered table-condensed">
  <thead>
    <tr>
      <th>Type</th>
      <th>Name</th>
      <th>Description</th>
    </tr>
  </thead>
  <tbody>
    <tr>
      <td><a class="xref" href="GrapeCity.Documents.Common.Quadrilateral.html">Quadrilateral</a></td>
      <td><span class="parametername">quadrilateral</span></td>
      <td><p>A quadrilateral specifying the polygon.</p>
</td>
    </tr>
    <tr>
      <td><a class="xref" href="https://learn.microsoft.com/dotnet/api/system.drawing.color">Color</a></td>
      <td><span class="parametername">lineColor</span></td>
      <td><p>The line color.</p>
</td>
    </tr>
    <tr>
      <td><a class="xref" href="https://learn.microsoft.com/dotnet/api/system.single">float</a></td>
      <td><span class="parametername">lineWidth</span></td>
      <td><p>The line width.</p>
</td>
    </tr>
    <tr>
      <td><a class="xref" href="GrapeCity.Documents.Drawing.DashStyle.html">DashStyle</a></td>
      <td><span class="parametername">lineStyle</span></td>
      <td><p>The line style (solid by default).</p>
</td>
    </tr>
  </tbody>
</table>


<a id="GrapeCity_Documents_Drawing_GcGraphics_DrawPolygon_" data-uid="GrapeCity.Documents.Drawing.GcGraphics.DrawPolygon*"></a>
<h4 id="GrapeCity_Documents_Drawing_GcGraphics_DrawPolygon_GrapeCity_Documents_Common_Quadrilateral_System_Drawing_Color_System_Single_System_Single___" data-uid="GrapeCity.Documents.Drawing.GcGraphics.DrawPolygon(GrapeCity.Documents.Common.Quadrilateral,System.Drawing.Color,System.Single,System.Single[])">DrawPolygon(Quadrilateral, Color, float, float[])</h4>
<div class="markdown level1 summary"><p>Draws a polygon specified by an array of points, using a specified line color, width and dash pattern.</p>
<p>
If the dashPattern array contains two or more items, the polygon is drawn with a <a class="xref" href="GrapeCity.Documents.Drawing.Pen.html">Pen</a>
having <a class="xref" href="GrapeCity.Documents.Drawing.Pen.LineCap.html#GrapeCity_Documents_Drawing_Pen_LineCap">LineCap</a> set to <a class="xref" href="GrapeCity.Documents.Drawing.PenLineCap.html#GrapeCity_Documents_Drawing_PenLineCap_Square">Square</a> instead of <a class="xref" href="GrapeCity.Documents.Drawing.PenLineCap.html#GrapeCity_Documents_Drawing_PenLineCap_Flat">Flat</a>.
</p>
</div>
<div class="markdown level1 conceptual"></div>
<h5 class="declaration">Declaration</h5>
<div class="codewrapper">
  <pre><code class="lang-csharp hljs">public void DrawPolygon(Quadrilateral quadrilateral, Color lineColor, float lineWidth, float[] dashPattern)</code></pre>
</div>
<div class="codewrapper">
  <pre><code class="lang-vbnet hljs">Public Sub DrawPolygon(quadrilateral As Quadrilateral, lineColor As Color, lineWidth As Single, dashPattern As Single())</code></pre>
</div>
<h5 class="parameters">Parameters</h5>
<table class="table table-bordered table-condensed">
  <thead>
    <tr>
      <th>Type</th>
      <th>Name</th>
      <th>Description</th>
    </tr>
  </thead>
  <tbody>
    <tr>
      <td><a class="xref" href="GrapeCity.Documents.Common.Quadrilateral.html">Quadrilateral</a></td>
      <td><span class="parametername">quadrilateral</span></td>
      <td><p>A quadrilateral specifying the polygon.</p>
</td>
    </tr>
    <tr>
      <td><a class="xref" href="https://learn.microsoft.com/dotnet/api/system.drawing.color">Color</a></td>
      <td><span class="parametername">lineColor</span></td>
      <td><p>The line color.</p>
</td>
    </tr>
    <tr>
      <td><a class="xref" href="https://learn.microsoft.com/dotnet/api/system.single">float</a></td>
      <td><span class="parametername">lineWidth</span></td>
      <td><p>The line width.</p>
</td>
    </tr>
    <tr>
      <td><a class="xref" href="https://learn.microsoft.com/dotnet/api/system.single">float</a>[]</td>
      <td><span class="parametername">dashPattern</span></td>
      <td><p>The dash pattern.</p>
</td>
    </tr>
  </tbody>
</table>


<a id="GrapeCity_Documents_Drawing_GcGraphics_DrawPolygon_" data-uid="GrapeCity.Documents.Drawing.GcGraphics.DrawPolygon*"></a>
<h4 id="GrapeCity_Documents_Drawing_GcGraphics_DrawPolygon_GrapeCity_Documents_Common_Quadrilateral_GrapeCity_Documents_Drawing_Pen_" data-uid="GrapeCity.Documents.Drawing.GcGraphics.DrawPolygon(GrapeCity.Documents.Common.Quadrilateral,GrapeCity.Documents.Drawing.Pen)">DrawPolygon(Quadrilateral, Pen)</h4>
<div class="markdown level1 summary"><p>Draws a polygon specified by an array of points, using a specified pen.</p>
</div>
<div class="markdown level1 conceptual"></div>
<h5 class="declaration">Declaration</h5>
<div class="codewrapper">
  <pre><code class="lang-csharp hljs">public void DrawPolygon(Quadrilateral quadrilateral, Pen pen)</code></pre>
</div>
<div class="codewrapper">
  <pre><code class="lang-vbnet hljs">Public Sub DrawPolygon(quadrilateral As Quadrilateral, pen As Pen)</code></pre>
</div>
<h5 class="parameters">Parameters</h5>
<table class="table table-bordered table-condensed">
  <thead>
    <tr>
      <th>Type</th>
      <th>Name</th>
      <th>Description</th>
    </tr>
  </thead>
  <tbody>
    <tr>
      <td><a class="xref" href="GrapeCity.Documents.Common.Quadrilateral.html">Quadrilateral</a></td>
      <td><span class="parametername">quadrilateral</span></td>
      <td><p>A quadrilateral specifying the polygon.</p>
</td>
    </tr>
    <tr>
      <td><a class="xref" href="GrapeCity.Documents.Drawing.Pen.html">Pen</a></td>
      <td><span class="parametername">pen</span></td>
      <td><p>The pen to use.</p>
</td>
    </tr>
  </tbody>
</table>
</div>
