Version

ShowFontNamesInFont Property

Gets or sets whether the font names in the list will be displayed in the font they represent.
Syntax
'Declaration
 
Public Property ShowFontNamesInFont As Boolean
public bool ShowFontNamesInFont {get; set;}
Remarks

By default, each font name in the dropdown list is displayed in the font that it represents. The ShowFontNamesInFont property provides the ability to disable this feature.

Note: When the ShowFontNamesInFont is true, the font data of the control's ItemAppearance is not applied.

Example
This sample sets the ShowFontNamesInFont and ShowFontTypeIndicator properties of the UltraFontPicker control.

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;

}
Requirements

Target Platforms: Windows 10, Windows 8.1, Windows 8, Windows 7, Windows Server 2012, Windows 7, Windows Vista SP1 or later, Windows XP SP3, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2

See Also