[]
Gets the collection of control glyphs (images used to show sorting, check boxes, etc).
[Browsable(false)]
public GridGlyphs Glyphs { get; }
The Glyphs property returns a GridGlyphs collection with an indexer of type GlyphType. This collection allows you to get or set the images used to indicate column sorting, collapsed and expanded outline groups, check boxes, etc.
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.
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):
c1trueDBGrid.Glyphs[GlyphType.SortAscending] = imgAscending;
c1trueDBGrid.Glyphs[GlyphType.SortDescending] = imgDescending;