FontInfo.Name Property
Gets or sets the primary font name.
Namespace: System.Web.UI.WebControls
Assembly: System.Web (in System.Web.dll)
[TypeConverterAttribute(typeof(FontConverter.FontNameConverter))] public string Name { get; set; }
Property Value
Type: System.StringThe primary font name. The default value is String.Empty, which indicates that this property is not set.
| Exception | Condition |
|---|---|
| ArgumentNullException | The specified font name is null. |
Use the Name property to specify or determine the primary font name. The primary font name determines the font that is used to display text in the control associated with the FontInfo.
The following example demonstrates how to use the Name property to programmatically specify the font name for a Label control.
<%@ 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 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>
Windows 8, Windows Server 2012, Windows 7, Windows Vista SP2, Windows Server 2008 (Server Core Role not supported), Windows Server 2008 R2 (Server Core Role supported with SP1 or later; Itanium not supported)
The .NET Framework does not support all versions of every platform. For a list of the supported versions, see .NET Framework System Requirements.
Note