# GrapeCity.Documents.Excel.Drawing.IShape.IsPrintable

## Content

<div class="doc-site-dotnet-api-container">



<h1 id="GrapeCity_Documents_Excel_Drawing_IShape_IsPrintable_" data-uid="GrapeCity.Documents.Excel.Drawing.IShape.IsPrintable*">IsPrintable Property
</h1>
<div class="markdown level0 summary"></div>
<div class="markdown level0 conceptual"></div>



<a id="GrapeCity_Documents_Excel_Drawing_IShape_IsPrintable_" data-uid="GrapeCity.Documents.Excel.Drawing.IShape.IsPrintable*"></a>
<h4 id="GrapeCity_Documents_Excel_Drawing_IShape_IsPrintable" data-uid="GrapeCity.Documents.Excel.Drawing.IShape.IsPrintable">IsPrintable</h4>
<div class="markdown level1 summary"><p>Gets or sets whether the object should be printed.</p>
<p>This property indicates whether the shape is included when the worksheet is printed or exported to a printable output such as PDF.</p>
</div>
<div class="markdown level1 conceptual"></div>
<h5 class="declaration">Declaration</h5>
<div class="codewrapper">
  <pre><code class="lang-csharp hljs">bool IsPrintable { get; set; }</code></pre>
</div>
<div class="codewrapper">
  <pre><code class="lang-vbnet hljs">Property IsPrintable As Boolean</code></pre>
</div>
<h5 id="GrapeCity_Documents_Excel_Drawing_IShape_IsPrintable_examples">Examples</h5>
<pre><code class="lang-csharp">IShape shape = worksheet.Shapes.AddShape(AutoShapeType.Rectangle, 20, 20, 120, 60);
shape.IsPrintable = false;
bool isPrintable = shape.IsPrintable;</code></pre>

</div>
