FontInfo.ToString Method ()

 

Returns a string that contains the font name and size for an instance of the FontInfo class.

Namespace:   System.Web.UI.WebControls
Assembly:  System.Web (in System.Web.dll)

Public Overrides Function ToString As String

Return Value

Type: System.String

A string that contains the font name and size for an instance of the FontInfo class.

Use the ToString method to create a string that contains the font name and size, separated by a comma, for an instance of the FontInfo class.

System_CAPS_noteNote

If the Size property is not set, only the font name is returned.

<%@ 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 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>

.NET Framework
Available since 1.1
Return to top
Show: