# GrapeCity.ActiveReports.Border.Style

## Content

<div class="doc-site-dotnet-api-container">



<h1 id="GrapeCity_ActiveReports_Border_Style_" data-uid="GrapeCity.ActiveReports.Border.Style*">Style Property
</h1>
<div class="markdown level0 summary"></div>
<div class="markdown level0 conceptual"></div>



<a id="GrapeCity_ActiveReports_Border_Style_" data-uid="GrapeCity.ActiveReports.Border.Style*"></a>
<h4 id="GrapeCity_ActiveReports_Border_Style" data-uid="GrapeCity.ActiveReports.Border.Style">Style</h4>
<div class="markdown level1 summary"><p>Gets or sets the style for all border lines.</p>
</div>
<div class="markdown level1 conceptual"></div>
<h5 class="declaration">Declaration</h5>
<div class="codewrapper">
  <pre><code class="lang-csharp hljs">public BorderLineStyle Style { get; set; }</code></pre>
</div>
<h5 class="propertyValue">Property Value</h5>
<table class="table table-bordered table-condensed">
  <thead>
    <tr>
      <th>Type</th>
      <th>Description</th>
    </tr>
  </thead>
  <tbody>
    <tr>
      <td><a class="xref" href="GrapeCity.ActiveReports.BorderLineStyle.html">BorderLineStyle</a></td>
      <td><p>For a list of valid values, see here: <a class="xref" href="GrapeCity.ActiveReports.BorderLineStyle.html">BorderLineStyle</a></p>
</td>
    </tr>
  </tbody>
</table>
<h5 id="GrapeCity_ActiveReports_Border_Style_remarks">Remarks</h5>
<div class="markdown level1 remarks"><p>Default value is None</p>
</div>
<h5 id="GrapeCity_ActiveReports_Border_Style_examples">Examples</h5>
<pre><code class="lang-csharp">border.Style = BorderLineStyle.Solid;
BorderLineStyle edgeStyle;
//All of the values below should be equal to the style solid.
edgeStyle = border.RightStyle;
edgeStyle = border.LeftStyle;
edgeStyle = border.BottomStyle;
edgeStyle = border.TopStyle;</code></pre>

</div>
