Version

ShowFontTypeIndicator Property

Gets or sets whether the font's type indicator icon will be displayed for items in the dropdown list.
Syntax
'Declaration
 
Public Property ShowFontTypeIndicator As Boolean
public bool ShowFontTypeIndicator {get; set;}
Remarks

Note: When the ShowFontTypeIndicator is true, the Image property 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