バージョン

ShowFontTypeIndicator プロパティ

リストに表示するフォント名とともに、それぞれの名前に対応したフォントの種類を表示するかどうかを取得または設定します。
シンタックス
'宣言
 
Public Property ShowFontTypeIndicator As Boolean
public bool ShowFontTypeIndicator {get; set;}
解説

注: ShowFontTypeIndicator が True の場合、コントロールの ItemAppearanceImage プロパティは適用されません。

使用例
Private Sub Form1_Load(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles MyBase.Load
     
Me.UltraFontNameEditor1.ShowFontNamesInFont = False

     Me.UltraFontNameEditor1.ShowFontTypeIndicator = True

 End Sub
private void Form1_Load(object sender, System.EventArgs e)
{

	this.ultraFontNameEditor1.ShowFontNamesInFont = false;
	this.ultraFontNameEditor1.ShowFontTypeIndicator = true;

}
参照