# C1.C1Pdf.C1PdfDocument.DrawPie

## Content

<div class="doc-site-dotnet-api-container">



<h1 id="C1_C1Pdf_C1PdfDocument_DrawPie_" data-uid="C1.C1Pdf.C1PdfDocument.DrawPie*">DrawPie Method
</h1>
<div class="markdown level0 summary"></div>
<div class="markdown level0 conceptual"></div>



<a id="C1_C1Pdf_C1PdfDocument_DrawPie_" data-uid="C1.C1Pdf.C1PdfDocument.DrawPie*"></a>
<h4 id="C1_C1Pdf_C1PdfDocument_DrawPie_System_Drawing_Pen_System_Drawing_RectangleF_System_Single_System_Single_" data-uid="C1.C1Pdf.C1PdfDocument.DrawPie(System.Drawing.Pen,System.Drawing.RectangleF,System.Single,System.Single)">DrawPie(Pen, RectangleF, float, float)</h4>
<div class="markdown level1 summary"><p>Draws a pie shape defined by an ellipse specified by a rectangle structure and two radial lines.</p>
</div>
<div class="markdown level1 conceptual"></div>
<h5 class="declaration">Declaration</h5>
<div class="codewrapper">
  <pre><code class="lang-csharp hljs">public void DrawPie(Pen pen, RectangleF rc, float startAngle, float sweepAngle)</code></pre>
</div>
<div class="codewrapper">
  <pre><code class="lang-vbnet hljs">Public Sub DrawPie(pen As Pen, rc As RectangleF, startAngle As Single, sweepAngle 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.pen">Pen</a></td>
      <td><span class="parametername">pen</span></td>
      <td><p><a class="xref" href="https://learn.microsoft.com/dotnet/api/system.drawing.pen">Pen</a> object that determines the color, width, and style of the pie shape.</p>
</td>
    </tr>
    <tr>
      <td><a class="xref" href="https://learn.microsoft.com/dotnet/api/system.drawing.rectanglef">RectangleF</a></td>
      <td><span class="parametername">rc</span></td>
      <td><p>The rectangle structure that represents the bounding rectangle of the ellipse that contains the pie shape.</p>
</td>
    </tr>
    <tr>
      <td><a class="xref" href="https://learn.microsoft.com/dotnet/api/system.single">float</a></td>
      <td><span class="parametername">startAngle</span></td>
      <td><p>Angle measured in degrees clockwise from the x-axis to the first side of the pie shape.</p>
</td>
    </tr>
    <tr>
      <td><a class="xref" href="https://learn.microsoft.com/dotnet/api/system.single">float</a></td>
      <td><span class="parametername">sweepAngle</span></td>
      <td><p>Angle measured in degrees clockwise from the startAngle parameter to the second side of the pie shape.</p>
</td>
    </tr>
  </tbody>
</table>
<h5 id="C1_C1Pdf_C1PdfDocument_DrawPie_System_Drawing_Pen_System_Drawing_RectangleF_System_Single_System_Single__remarks">Remarks</h5>
<div class="markdown level1 remarks"><p>All coordinates are expressed in points, measured from the upper-left corner of the page.</p>
</div>
</div>
