# C1.Win.FlexGrid.C1FlexGridBase.Glyphs

## Content

<div class="doc-site-dotnet-api-container">



<h1 id="C1_Win_FlexGrid_C1FlexGridBase_Glyphs_" data-uid="C1.Win.FlexGrid.C1FlexGridBase.Glyphs*">Glyphs Property
</h1>
<div class="markdown level0 summary"></div>
<div class="markdown level0 conceptual"></div>



<a id="C1_Win_FlexGrid_C1FlexGridBase_Glyphs_" data-uid="C1.Win.FlexGrid.C1FlexGridBase.Glyphs*"></a>
<h4 id="C1_Win_FlexGrid_C1FlexGridBase_Glyphs" data-uid="C1.Win.FlexGrid.C1FlexGridBase.Glyphs">Glyphs</h4>
<div class="markdown level1 summary"><p>Gets the collection of control glyphs (images used to show sorting, check boxes, etc).</p>
</div>
<div class="markdown level1 conceptual"></div>
<h5 class="declaration">Declaration</h5>
<div class="codewrapper">
  <pre><code class="lang-csharp hljs">[Browsable(false)]
public GridGlyphs Glyphs { get; }</code></pre>
</div>
<div class="codewrapper">
  <pre><code class="lang-vbnet hljs">&lt;Browsable(False)&gt;
Public ReadOnly Property Glyphs As GridGlyphs</code></pre>
</div>
<h5 id="C1_Win_FlexGrid_C1FlexGridBase_Glyphs_remarks">Remarks</h5>
<div class="markdown level1 remarks"><p>The <a class="xref" href="C1.Win.FlexGrid.C1FlexGridBase.Glyphs.html#C1_Win_FlexGrid_C1FlexGridBase_Glyphs">Glyphs</a> property returns a <a class="xref" href="C1.Win.FlexGrid.GridGlyphs.html">GridGlyphs</a> collection with an indexer 
of type <a class="xref" href="C1.Win.FlexGrid.GlyphEnum.html">GlyphEnum</a>. This collection allows you to get or set the images used to 
indicate column sorting, collapsed and expanded outline groups, check boxes, cursors, 
error information, etc.</p>
<p>Note: Setting a glyph to null restores the default (built-in) image. If you want to make a glyph 
invisible, set it to a small blank image instead.</p>
</div>
<h5 id="C1_Win_FlexGrid_C1FlexGridBase_Glyphs_examples">Examples</h5>
<p>For example, the code below causes the grid to use custom images to display the column sorting order
(instead of the built-in hollow triangles):</p>
<pre><code class="lang-csharp">flex.Glyphs[GlyphEnum.Ascending]  = imgAscending;
flex.Glyphs[GlyphEnum.Descending] = imgDescending;</code></pre>

</div>
