True DBGrid for WinForms
Glyphs プロパティ (Frame)
使用例 

C1.Win.C1TrueDBGrid.4.5.2 アセンブリ > C1.Win.C1TrueDBGrid.BaseGrid 名前空間 > Frame クラス : Glyphs プロパティ
Gets the collection of control glyphs (images used to show sorting, check boxes, etc).
シンタックス
'宣言
 
Public ReadOnly Property Glyphs As GridGlyphs
public GridGlyphs Glyphs {get;}
解説

The Glyphs property returns a C1.Win.C1TrueDBGrid.GridGlyphs collection with an indexer of type C1.Win.C1TrueDBGrid.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;
参照

Frame クラス
Frame メンバ