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


MergeWith メソッドを使用して、指定した FontInfo のフォント プロパティをこのメソッドの呼び出し元である FontInfo クラスのインスタンスに結合します。
![]() |
---|
このメソッドは、FontInfo クラスの現在のインスタンスで設定されていない各プロパティを f パラメータの対応するプロパティの値に設定して、FontInfo オブジェクトの 2 つのプロパティを結合します。設定されていないプロパティだけが置き換えられます。f パラメータのプロパティが設定されていない場合、FontInfo クラスの現在のインスタンスの対応するプロパティは置き換えられません。 |

MergeWith メソッドを使用して、FontInfo のフォント プロパティを Label コントロールの Font プロパティに結合する方法を次の例に示します。
<%@ Page Language="VB" AutoEventWireup="True" %> <html> <head> <script runat="server"> Sub CopyFontInfo(sender As Object, e As EventArgs) ' Copy the FontInfo of Sample1Label to ResultLabel. ResultLabel.Font.CopyFrom(Sample1Label.Font) ResultLabel.Text = "Copy Result" End Sub </script> </head> <body> <form runat="server"> <h3>FontInfo CopyFrom Example</h3> Click <b>Copy</b> to copy the font style of Font Sample 1 and display the result <br> in the Operation Result label. <br><br> <asp:Label id="Sample1Label" Text="Font Sample 1" Font-Name="Times New Roman" Font-Italic="true" Font-Strikeout="true" runat="server" /> <br><br> <asp:Button id="CopyButton" Text="Copy" OnClick="CopyFontInfo" runat="server" /> <br><br> Operation Result: <br> <asp:Label id="ResultLabel" runat="server" /> </form> </body> </html>
<%@ Page Language="C#" AutoEventWireup="True" %> <html> <head> <script runat="server"> void CopyFontInfo(Object sender, EventArgs e) { // Copy the FontInfo of Sample1Label to ResultLabel. ResultLabel.Font.CopyFrom(Sample1Label.Font); ResultLabel.Text = "Copy Result"; } </script> </head> <body> <form runat="server"> <h3>FontInfo CopyFrom Example</h3> Click <b>Copy</b> to copy the font style of Font Sample 1 and display the result <br> in the Operation Result label. <br><br> <asp:Label id="Sample1Label" Text="Font Sample 1" Font-Name="Times New Roman" Font-Italic="true" Font-Strikeout="true" runat="server" /> <br><br> <asp:Button id="CopyButton" Text="Copy" OnClick="CopyFontInfo" runat="server" /> <br><br> Operation Result: <br> <asp:Label id="ResultLabel" runat="server" /> </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.MergeWith メソッドのページへのリンク