FontInfo.Name Свойство

Определение

Получает или задает имя основного шрифта.

public:
 property System::String ^ Name { System::String ^ get(); void set(System::String ^ value); };
[System.ComponentModel.Bindable(true)]
[System.ComponentModel.TypeConverter(typeof(System.Drawing.FontConverter+FontNameConverter))]
public string Name { get; set; }
[System.ComponentModel.TypeConverter(typeof(System.Drawing.FontConverter+FontNameConverter))]
public string Name { get; set; }
[<System.ComponentModel.Bindable(true)>]
[<System.ComponentModel.TypeConverter(typeof(System.Drawing.FontConverter+FontNameConverter))>]
member this.Name : string with get, set
[<System.ComponentModel.TypeConverter(typeof(System.Drawing.FontConverter+FontNameConverter))>]
member this.Name : string with get, set
Public Property Name As String

Значение свойства

Имя основного шрифта. Значение по умолчанию равно Empty и показывает, что значение свойства не задано.

Атрибуты

Исключения

Заданное имя шрифта имеет значение null.

Примеры

В следующем примере показано, как использовать Name свойство для программного указания имени шрифта Label для элемента управления .

<%@ Page Language="C#" %>

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">

<script runat="server">

  void Page_Load(object sender, EventArgs e)
  {
    // When the page loads, set the myLabel Label control's FontInfo properties.
    // Note that myLabel.Font is a FontInfo object.
    
    myLabel.Font.Bold = true;
    myLabel.Font.Italic = false;
    myLabel.Font.Name = "verdana";
    myLabel.Font.Overline = false;
    myLabel.Font.Size = 10;
    myLabel.Font.Strikeout = false;
    myLabel.Font.Underline = true;
    
    // Write information on the FontInfo object to the myLabel label.
    myLabel.Text = myLabel.Font.ToString();
    
  }

</script>

<html xmlns="http://www.w3.org/1999/xhtml" >
<head runat="server">
    <title>FontInfo Example</title>
</head>
  <body>
    <form id="form1" runat="server">
    <h3>FontInfo Example</h3>
      <asp:Label id="myLabel" 
        runat="server" >
      </asp:Label>
    </form>
  </body>
</html>
<%@ Page Language="VB" %>

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">

<script runat="server">

  Sub Page_Load(ByVal sender As Object, ByVal e As EventArgs)
  
    ' When the page loads, set the myLabel Label control's FontInfo properties.
    ' Note that myLabel.Font is a FontInfo object.
    
    myLabel.Font.Bold = True
    myLabel.Font.Italic = False
    myLabel.Font.Name = "verdana"
    myLabel.Font.Overline = False
    myLabel.Font.Size = 10
    myLabel.Font.Strikeout = False
    myLabel.Font.Underline = True
    
    ' Write information on the FontInfo object to the myLabel label.
    myLabel.Text = myLabel.Font.ToString()
    
  End Sub

</script>

<html xmlns="http://www.w3.org/1999/xhtml" >
<head id="Head1" runat="server">
    <title>FontInfo Example</title>
</head>
  <body>
    <form id="form1" runat="server">
    <h3>FontInfo Example</h3>
      <asp:Label id="myLabel" 
        runat="server" >
      </asp:Label>
    </form>
  </body>
</html>

Комментарии

Используйте свойство , Name чтобы указать или определить имя основного шрифта. Основное имя шрифта определяет шрифт, используемый для отображения текста в элементе управления, связанном FontInfoс .

Примечание

При установке Names свойства Name свойство автоматически обновляется первым элементом в свойстве Names . Если задать Name свойство, Names свойство автоматически обновляется одним массивом элементов, содержащим значение Name свойства .

Применяется к

См. также раздел