FontFamily.Name 属性

定义

获取此 FontFamily 的名称。Gets the name of this FontFamily.

public:
 property System::String ^ Name { System::String ^ get(); };
public string Name { get; }
member this.Name : string
Public ReadOnly Property Name As String

属性值

String

一个 String,表示此 FontFamily 的名称。A String that represents the name of this FontFamily.

示例

下面的代码示例演示了类的属性中的所有字体系列 Families FontFamilyThe following code example shows all the font families in the Families property of the FontFamily class. 此示例旨在与 Windows 窗体一起使用。This example is designed to be used with a Windows Form. 若要运行此示例,请将一个名为的 ListBox 命名 listBox1 为窗体,并 PopulateListBoxWithFonts 从窗体的构造函数中调用方法。To run this example, add a ListBox named listBox1 to a form, and call the PopulateListBoxWithFonts method from the form's constructor.

private:
   void PopulateListBoxWithFonts()
   {
      listBox1->Width = 200;
      listBox1->Location = Point(40,120);
      System::Collections::IEnumerator^ myEnum = FontFamily::Families->GetEnumerator();
      while ( myEnum->MoveNext() )
      {
         FontFamily^ oneFontFamily = safe_cast<FontFamily^>(myEnum->Current);
         listBox1->Items->Add( oneFontFamily->Name );
      }
   }
private void PopulateListBoxWithFonts()
{
    listBox1.Width = 200;
    listBox1.Location = new Point(40, 120);
    foreach ( FontFamily oneFontFamily in FontFamily.Families )
    {
        listBox1.Items.Add(oneFontFamily.Name);
    }
}
Private Sub PopulateListBoxWithFonts()
    listBox1.Width = 200
    listBox1.Location = New Point(40, 120)
    Dim oneFontFamily As FontFamily
    For Each oneFontFamily In FontFamily.Families
        listBox1.Items.Add(oneFontFamily.Name)
    Next
End Sub

适用于