FlexPivot for WinForms
Glyphs プロパティ (C1FlexGridBase)
使用例 

C1.Win.C1FlexGrid.4.5.2 アセンブリ > C1.Win.C1FlexGrid 名前空間 > C1FlexGridBase クラス : 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 GridGlyphs collection with an indexer of type GlyphEnum. 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.

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):
flex.Glyphs[GlyphEnum.Ascending]  = imgAscending;
flex.Glyphs[GlyphEnum.Descending] = imgDescending;
参照

C1FlexGridBase クラス
C1FlexGridBase メンバ