FontInfo.Size プロパティ
アセンブリ: System.Web.Mobile (system.web.mobile.dll 内)

[BindableAttribute(true)] public: property FontSize Size { FontSize get (); void set (FontSize value); }
指定したフォント サイズを示す列挙値。


Windows 98, Windows 2000 SP4, Windows Millennium Edition, Windows Server 2003, Windows XP Media Center Edition, Windows XP Professional x64 Edition, Windows XP SP2, Windows XP Starter Edition
開発プラットフォームの中には、.NET Framework によってサポートされていないバージョンがあります。サポートされているバージョンについては、「システム要件」を参照してください。


FontInfo.Size プロパティ
アセンブリ: System.Web (system.web.dll 内)

フォント サイズを表す FontUnit。



Size プロパティを使用して、プログラムによって Label コントロールのフォント サイズを変更する方法を次の例に示します。
<%@ 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 によってサポートされていないバージョンがあります。サポートされているバージョンについては、「システム要件」を参照してください。


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