Sdílet prostřednictvím


Postupy: Výčet instalovaných písem

Třída InstalledFontCollection dědí z FontCollection abstraktní základní třídy. Objekt můžete použít InstalledFontCollection k vytvoření výčtu písem nainstalovaných v počítači. Vlastnost Families objektu InstalledFontCollection je pole FontFamily objektů.

Příklad

Následující příklad uvádí názvy všech rodin písem nainstalovaných v počítači. Kód načte Name vlastnost každého FontFamily objektu v poli vrácené Families vlastností. Když se jména rodiny načtou, zřetědí se tak, aby vytvořily seznam oddělený čárkami. DrawString Pak metoda Graphics třídy nakreslí čárkami oddělený seznam v obdélníku.

Pokud spustíte ukázkový kód, bude výstup vypadat podobně jako na následujícím obrázku:

Snímek obrazovky znázorňující nainstalované rodiny písem

FontFamily fontFamily = new FontFamily("Arial");
Font font = new Font(
   fontFamily,
   8,
   FontStyle.Regular,
   GraphicsUnit.Point);
RectangleF rectF = new RectangleF(10, 10, 500, 500);
SolidBrush solidBrush = new SolidBrush(Color.Black);

string familyName;
string familyList = "";
FontFamily[] fontFamilies;

InstalledFontCollection installedFontCollection = new InstalledFontCollection();

// Get the array of FontFamily objects.
fontFamilies = installedFontCollection.Families;

// The loop below creates a large string that is a comma-separated
// list of all font family names.

int count = fontFamilies.Length;
for (int j = 0; j < count; ++j)
{
    familyName = fontFamilies[j].Name;
    familyList = familyList + familyName;
    familyList = familyList + ",  ";
}

// Draw the large string (list of all families) in a rectangle.
e.Graphics.DrawString(familyList, font, solidBrush, rectF);
Dim fontFamily As New FontFamily("Arial")
Dim font As New Font( _
   fontFamily, _
   8, _
   FontStyle.Regular, _
   GraphicsUnit.Point)
Dim rectF As New RectangleF(10, 10, 500, 500)
Dim solidBrush As New SolidBrush(Color.Black)

Dim familyName As String
Dim familyList As String = ""
Dim fontFamilies() As FontFamily

Dim installedFontCollection As New InstalledFontCollection()

' Get the array of FontFamily objects.
fontFamilies = installedFontCollection.Families

' The loop below creates a large string that is a comma-separated
' list of all font family names.
Dim count As Integer = fontFamilies.Length
Dim j As Integer

While j < count
    familyName = fontFamilies(j).Name
    familyList = familyList & familyName
    familyList = familyList & ",  "
    j += 1
End While

' Draw the large string (list of all families) in a rectangle.
e.Graphics.DrawString(familyList, font, solidBrush, rectF)

Probíhá kompilace kódu

Předchozí příklad je určen pro použití s model Windows Forms a vyžaduje PaintEventArgse, což je parametr PaintEventHandler. Kromě toho byste měli importovat System.Drawing.Text obor názvů.

Viz také