Typeface Class
.NET Framework 3.0
Represents a combination of FontFamily, FontWeight, FontStyle, and FontStretch.
Namespace: System.Windows.Media
Assembly: PresentationCore (in presentationcore.dll)
XML Namespace: http://schemas.microsoft.com/winfx/2006/xaml/presentation
Assembly: PresentationCore (in presentationcore.dll)
XML Namespace: http://schemas.microsoft.com/winfx/2006/xaml/presentation
// Return the typeface collection for the fonts in the selected URI location. System.Collections.Generic.ICollection<Typeface> typefaces = Fonts.GetTypefaces("file:///C:\\Windows\\Fonts\\#Georgia"); // Enumerate the typefaces in the collection. foreach (Typeface face in typefaces) { // Separate the URI directory source info from the font family name. string[] familyName = face.FontFamily.Source.Split('#'); // Add the font family name, weight, and style values to the typeface combo box. comboBoxTypeface.Items.Add(familyName[familyName.Length - 1] + " " + face.Weight + " " + face.Style); } comboBoxTypeface.SelectedIndex = 0;
Windows 98, Windows Server 2000 SP4, Windows CE, Windows Millennium Edition, Windows Mobile for Pocket PC, Windows Mobile for Smartphone, Windows Server 2003, Windows XP Media Center Edition, Windows XP Professional x64 Edition, Windows XP SP2, Windows XP Starter Edition
The Microsoft .NET Framework 3.0 is supported on Windows Vista, Microsoft Windows XP SP2, and Windows Server 2003 SP1.
Show: