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決定します。

Note

プロパティを Names 設定すると、プロパティの最初の Name 項目でプロパティが自動的に Names 更新されます。 プロパティを Name 設定すると、プロパティの値を Names 含む単一の要素配列でプロパティが自動的に Name 更新されます。

適用対象

こちらもご覧ください