# GrapeCity.Documents.Drawing.GcGraphics.DrawRoundRect

## Content

<div class="doc-site-dotnet-api-container">



<h1 id="GrapeCity_Documents_Drawing_GcGraphics_DrawRoundRect_" data-uid="GrapeCity.Documents.Drawing.GcGraphics.DrawRoundRect*">DrawRoundRect Method
</h1>
<div class="markdown level0 summary"></div>
<div class="markdown level0 conceptual"></div>



<a id="GrapeCity_Documents_Drawing_GcGraphics_DrawRoundRect_" data-uid="GrapeCity.Documents.Drawing.GcGraphics.DrawRoundRect*"></a>
<h4 id="GrapeCity_Documents_Drawing_GcGraphics_DrawRoundRect_System_Drawing_RectangleF_GrapeCity_Documents_Drawing_Pen_GrapeCity_Documents_Drawing_Pen_GrapeCity_Documents_Drawing_Pen_GrapeCity_Documents_Drawing_Pen_GrapeCity_Documents_Drawing_CornerRadius_" data-uid="GrapeCity.Documents.Drawing.GcGraphics.DrawRoundRect(System.Drawing.RectangleF,GrapeCity.Documents.Drawing.Pen,GrapeCity.Documents.Drawing.Pen,GrapeCity.Documents.Drawing.Pen,GrapeCity.Documents.Drawing.Pen,GrapeCity.Documents.Drawing.CornerRadius)">DrawRoundRect(RectangleF, Pen, Pen, Pen, Pen, CornerRadius)</h4>
<div class="markdown level1 summary"><p>Draws a rounded border defined by four <a class="xref" href="GrapeCity.Documents.Drawing.Pen.html">Pen</a> objects and <a class="xref" href="GrapeCity.Documents.Drawing.CornerRadius.html">CornerRadius</a> structure.</p>
</div>
<div class="markdown level1 conceptual"></div>
<h5 class="declaration">Declaration</h5>
<div class="codewrapper">
  <pre><code class="lang-csharp hljs">public void DrawRoundRect(RectangleF bounds, Pen left, Pen top, Pen right, Pen bottom, CornerRadius cornerRadius)</code></pre>
</div>
<div class="codewrapper">
  <pre><code class="lang-vbnet hljs">Public Sub DrawRoundRect(bounds As RectangleF, left As Pen, top As Pen, right As Pen, bottom As Pen, cornerRadius As CornerRadius)</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.rectanglef">RectangleF</a></td>
      <td><span class="parametername">bounds</span></td>
      <td><p>The <a class="xref" href="https://learn.microsoft.com/dotnet/api/system.drawing.rectanglef">RectangleF</a> structure that represents the border bounds.</p>
</td>
    </tr>
    <tr>
      <td><a class="xref" href="GrapeCity.Documents.Drawing.Pen.html">Pen</a></td>
      <td><span class="parametername">left</span></td>
      <td><p>The left border.</p>
</td>
    </tr>
    <tr>
      <td><a class="xref" href="GrapeCity.Documents.Drawing.Pen.html">Pen</a></td>
      <td><span class="parametername">top</span></td>
      <td><p>The top border.</p>
</td>
    </tr>
    <tr>
      <td><a class="xref" href="GrapeCity.Documents.Drawing.Pen.html">Pen</a></td>
      <td><span class="parametername">right</span></td>
      <td><p>The right border.</p>
</td>
    </tr>
    <tr>
      <td><a class="xref" href="GrapeCity.Documents.Drawing.Pen.html">Pen</a></td>
      <td><span class="parametername">bottom</span></td>
      <td><p>The bottom border.</p>
</td>
    </tr>
    <tr>
      <td><a class="xref" href="GrapeCity.Documents.Drawing.CornerRadius.html">CornerRadius</a></td>
      <td><span class="parametername">cornerRadius</span></td>
      <td><p>The border's corner radius.</p>
</td>
    </tr>
  </tbody>
</table>


<a id="GrapeCity_Documents_Drawing_GcGraphics_DrawRoundRect_" data-uid="GrapeCity.Documents.Drawing.GcGraphics.DrawRoundRect*"></a>
<h4 id="GrapeCity_Documents_Drawing_GcGraphics_DrawRoundRect_System_Drawing_RectangleF_System_Single_System_Drawing_Color_System_Single_GrapeCity_Documents_Drawing_DashStyle_" data-uid="GrapeCity.Documents.Drawing.GcGraphics.DrawRoundRect(System.Drawing.RectangleF,System.Single,System.Drawing.Color,System.Single,GrapeCity.Documents.Drawing.DashStyle)">DrawRoundRect(RectangleF, float, Color, float, DashStyle)</h4>
<div class="markdown level1 summary"><p>Draws a rounded rectangle 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 rounded rectangle 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 DrawRoundRect(RectangleF bounds, float radius, Color lineColor, float lineWidth, DashStyle lineStyle = DashStyle.Solid)</code></pre>
</div>
<div class="codewrapper">
  <pre><code class="lang-vbnet hljs">Public Sub DrawRoundRect(bounds As RectangleF, radius As Single, 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.rectanglef">RectangleF</a></td>
      <td><span class="parametername">bounds</span></td>
      <td><p>A <a class="xref" href="https://learn.microsoft.com/dotnet/api/system.drawing.rectanglef">RectangleF</a> structure that represents the rectangle to draw.</p>
</td>
    </tr>
    <tr>
      <td><a class="xref" href="https://learn.microsoft.com/dotnet/api/system.single">float</a></td>
      <td><span class="parametername">radius</span></td>
      <td><p>The radius for the quarter ellipse that is drawn to replace every corner of the rectangle.</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 color of lines used to draw the rounded rectangle.</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 width of lines used to draw the rounded rectangle.</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 style of lines used to draw the rounded rectangle (solid by default).</p>
</td>
    </tr>
  </tbody>
</table>


<a id="GrapeCity_Documents_Drawing_GcGraphics_DrawRoundRect_" data-uid="GrapeCity.Documents.Drawing.GcGraphics.DrawRoundRect*"></a>
<h4 id="GrapeCity_Documents_Drawing_GcGraphics_DrawRoundRect_System_Drawing_RectangleF_System_Single_System_Single_System_Drawing_Color_System_Single_GrapeCity_Documents_Drawing_DashStyle_" data-uid="GrapeCity.Documents.Drawing.GcGraphics.DrawRoundRect(System.Drawing.RectangleF,System.Single,System.Single,System.Drawing.Color,System.Single,GrapeCity.Documents.Drawing.DashStyle)">DrawRoundRect(RectangleF, float, float, Color, float, DashStyle)</h4>
<div class="markdown level1 summary"><p>Draws a rounded rectangle 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 rounded rectangle 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 DrawRoundRect(RectangleF bounds, float radiusX, float radiusY, Color lineColor, float lineWidth, DashStyle lineStyle = DashStyle.Solid)</code></pre>
</div>
<div class="codewrapper">
  <pre><code class="lang-vbnet hljs">Public Sub DrawRoundRect(bounds As RectangleF, radiusX As Single, radiusY As Single, 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.rectanglef">RectangleF</a></td>
      <td><span class="parametername">bounds</span></td>
      <td><p>A <a class="xref" href="https://learn.microsoft.com/dotnet/api/system.drawing.rectanglef">RectangleF</a> structure that represents the rectangle to draw.</p>
</td>
    </tr>
    <tr>
      <td><a class="xref" href="https://learn.microsoft.com/dotnet/api/system.single">float</a></td>
      <td><span class="parametername">radiusX</span></td>
      <td><p>The x-radius for the quarter ellipse that is drawn to replace every corner of the rectangle.</p>
</td>
    </tr>
    <tr>
      <td><a class="xref" href="https://learn.microsoft.com/dotnet/api/system.single">float</a></td>
      <td><span class="parametername">radiusY</span></td>
      <td><p>The y-radius for the quarter ellipse that is drawn to replace every corner of the rectangle.</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 color of lines used to draw the rounded rectangle.</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 width of lines used to draw the rounded rectangle.</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 style of lines used to draw the rounded rectangle (solid by default).</p>
</td>
    </tr>
  </tbody>
</table>


<a id="GrapeCity_Documents_Drawing_GcGraphics_DrawRoundRect_" data-uid="GrapeCity.Documents.Drawing.GcGraphics.DrawRoundRect*"></a>
<h4 id="GrapeCity_Documents_Drawing_GcGraphics_DrawRoundRect_System_Drawing_RectangleF_System_Single_System_Drawing_Color_System_Single_System_Single___" data-uid="GrapeCity.Documents.Drawing.GcGraphics.DrawRoundRect(System.Drawing.RectangleF,System.Single,System.Drawing.Color,System.Single,System.Single[])">DrawRoundRect(RectangleF, float, Color, float, float[])</h4>
<div class="markdown level1 summary"><p>Draws a rounded rectangle using a specified line color, width and dash pattern.</p>
<p>
If the dashPattern array contains two or more items, the rounded rectangle 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 DrawRoundRect(RectangleF bounds, float radius, Color lineColor, float lineWidth, float[] dashPattern)</code></pre>
</div>
<div class="codewrapper">
  <pre><code class="lang-vbnet hljs">Public Sub DrawRoundRect(bounds As RectangleF, radius As Single, 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.rectanglef">RectangleF</a></td>
      <td><span class="parametername">bounds</span></td>
      <td><p>A <a class="xref" href="https://learn.microsoft.com/dotnet/api/system.drawing.rectanglef">RectangleF</a> structure that represents the rectangle to draw.</p>
</td>
    </tr>
    <tr>
      <td><a class="xref" href="https://learn.microsoft.com/dotnet/api/system.single">float</a></td>
      <td><span class="parametername">radius</span></td>
      <td><p>The radius for the quarter ellipse that is drawn to replace every corner of the rectangle.</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 color of lines used to draw the rounded rectangle.</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 width of lines used to draw the rounded rectangle.</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 lines used to draw the rounded rectangle.</p>
</td>
    </tr>
  </tbody>
</table>


<a id="GrapeCity_Documents_Drawing_GcGraphics_DrawRoundRect_" data-uid="GrapeCity.Documents.Drawing.GcGraphics.DrawRoundRect*"></a>
<h4 id="GrapeCity_Documents_Drawing_GcGraphics_DrawRoundRect_System_Drawing_RectangleF_System_Single_System_Single_System_Drawing_Color_System_Single_System_Single___" data-uid="GrapeCity.Documents.Drawing.GcGraphics.DrawRoundRect(System.Drawing.RectangleF,System.Single,System.Single,System.Drawing.Color,System.Single,System.Single[])">DrawRoundRect(RectangleF, float, float, Color, float, float[])</h4>
<div class="markdown level1 summary"><p>Draws a rounded rectangle using a specified line color, width and dash pattern.</p>
<p>
If the dashPattern array contains two or more items, the rounded rectangle 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 DrawRoundRect(RectangleF bounds, float radiusX, float radiusY, Color lineColor, float lineWidth, float[] dashPattern)</code></pre>
</div>
<div class="codewrapper">
  <pre><code class="lang-vbnet hljs">Public Sub DrawRoundRect(bounds As RectangleF, radiusX As Single, radiusY As Single, 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.rectanglef">RectangleF</a></td>
      <td><span class="parametername">bounds</span></td>
      <td><p>A <a class="xref" href="https://learn.microsoft.com/dotnet/api/system.drawing.rectanglef">RectangleF</a> structure that represents the rectangle to draw.</p>
</td>
    </tr>
    <tr>
      <td><a class="xref" href="https://learn.microsoft.com/dotnet/api/system.single">float</a></td>
      <td><span class="parametername">radiusX</span></td>
      <td><p>The x-radius for the quarter ellipse that is drawn to replace every corner of the rectangle.</p>
</td>
    </tr>
    <tr>
      <td><a class="xref" href="https://learn.microsoft.com/dotnet/api/system.single">float</a></td>
      <td><span class="parametername">radiusY</span></td>
      <td><p>The y-radius for the quarter ellipse that is drawn to replace every corner of the rectangle.</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 color of lines used to draw the rounded rectangle.</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 width of lines used to draw the rounded rectangle.</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 lines used to draw the rounded rectangle.</p>
</td>
    </tr>
  </tbody>
</table>


<a id="GrapeCity_Documents_Drawing_GcGraphics_DrawRoundRect_" data-uid="GrapeCity.Documents.Drawing.GcGraphics.DrawRoundRect*"></a>
<h4 id="GrapeCity_Documents_Drawing_GcGraphics_DrawRoundRect_System_Drawing_RectangleF_System_Single_GrapeCity_Documents_Drawing_Pen_" data-uid="GrapeCity.Documents.Drawing.GcGraphics.DrawRoundRect(System.Drawing.RectangleF,System.Single,GrapeCity.Documents.Drawing.Pen)">DrawRoundRect(RectangleF, float, Pen)</h4>
<div class="markdown level1 summary"><p>Draws a rounded rectangle 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 DrawRoundRect(RectangleF bounds, float radius, Pen pen)</code></pre>
</div>
<div class="codewrapper">
  <pre><code class="lang-vbnet hljs">Public Sub DrawRoundRect(bounds As RectangleF, radius As Single, 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.rectanglef">RectangleF</a></td>
      <td><span class="parametername">bounds</span></td>
      <td><p>A <a class="xref" href="https://learn.microsoft.com/dotnet/api/system.drawing.rectanglef">RectangleF</a> structure that represents the rectangle to draw.</p>
</td>
    </tr>
    <tr>
      <td><a class="xref" href="https://learn.microsoft.com/dotnet/api/system.single">float</a></td>
      <td><span class="parametername">radius</span></td>
      <td><p>The radius for the quarter ellipse that is drawn to replace every corner of the rectangle.</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 used to draw the rounded rectangle.</p>
</td>
    </tr>
  </tbody>
</table>


<a id="GrapeCity_Documents_Drawing_GcGraphics_DrawRoundRect_" data-uid="GrapeCity.Documents.Drawing.GcGraphics.DrawRoundRect*"></a>
<h4 id="GrapeCity_Documents_Drawing_GcGraphics_DrawRoundRect_System_Drawing_RectangleF_System_Single_System_Single_GrapeCity_Documents_Drawing_Pen_" data-uid="GrapeCity.Documents.Drawing.GcGraphics.DrawRoundRect(System.Drawing.RectangleF,System.Single,System.Single,GrapeCity.Documents.Drawing.Pen)">DrawRoundRect(RectangleF, float, float, Pen)</h4>
<div class="markdown level1 summary"><p>Draws a rounded rectangle 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 DrawRoundRect(RectangleF bounds, float radiusX, float radiusY, Pen pen)</code></pre>
</div>
<div class="codewrapper">
  <pre><code class="lang-vbnet hljs">Public Sub DrawRoundRect(bounds As RectangleF, radiusX As Single, radiusY As Single, 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.rectanglef">RectangleF</a></td>
      <td><span class="parametername">bounds</span></td>
      <td><p>A <a class="xref" href="https://learn.microsoft.com/dotnet/api/system.drawing.rectanglef">RectangleF</a> structure that represents the rectangle to draw.</p>
</td>
    </tr>
    <tr>
      <td><a class="xref" href="https://learn.microsoft.com/dotnet/api/system.single">float</a></td>
      <td><span class="parametername">radiusX</span></td>
      <td><p>The x-radius for the quarter ellipse that is drawn to replace every corner of the rectangle.</p>
</td>
    </tr>
    <tr>
      <td><a class="xref" href="https://learn.microsoft.com/dotnet/api/system.single">float</a></td>
      <td><span class="parametername">radiusY</span></td>
      <td><p>The y-radius for the quarter ellipse that is drawn to replace every corner of the rectangle.</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 used to draw the rounded rectangle.</p>
</td>
    </tr>
  </tbody>
</table>
</div>
