FontInfo.ToString メソッド

Dim instance As FontInfo Dim returnValue As String returnValue = instance.ToString


FontInfo.ToString メソッド
アセンブリ: System.Web (system.web.dll 内)

Dim instance As FontInfo Dim returnValue As String returnValue = instance.ToString
FontInfo クラスのインスタンスのフォント名とフォント サイズを格納している文字列。


<%@ 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 > <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>
<%@ 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 > <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="JScript" %> <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <script runat="server"> function Page_Load(sender, e : 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(); } </script> <html > <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 98, Windows 2000 SP4, Windows Server 2003, Windows XP Media Center Edition, Windows XP Professional x64 Edition, Windows XP SP2, Windows XP Starter Edition
開発プラットフォームの中には、.NET Framework によってサポートされていないバージョンがあります。サポートされているバージョンについては、「システム要件」を参照してください。


Weblioに収録されているすべての辞書からFontInfo.ToStringを検索する場合は、下記のリンクをクリックしてください。

- FontInfo.ToStringのページへのリンク