FontInfo.MergeWith(FontInfo) メソッド
定義
重要
一部の情報は、リリース前に大きく変更される可能性があるプレリリースされた製品に関するものです。 Microsoft は、ここに記載されている情報について、明示または黙示を問わず、一切保証しません。
public:
void MergeWith(System::Web::UI::WebControls::FontInfo ^ f);
public void MergeWith (System.Web.UI.WebControls.FontInfo f);
member this.MergeWith : System.Web.UI.WebControls.FontInfo -> unit
Public Sub MergeWith (f As FontInfo)
パラメーター
例
次の例では、 メソッドを使用して、 の MergeWith フォント プロパティをコントロールの FontInfo プロパティに結合する Font 方法を Label 示します。
<%@ Page Language="C#" AutoEventWireup="True" %>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" >
<head>
<title>FontInfo CopyFrom Example</title>
<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 id="form1" 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-Names="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="VB" AutoEventWireup="True" %>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" >
<head>
<title>FontInfo CopyFrom Example</title>
<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 id="form1" 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-Names="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>
注釈
メソッドを使用して、 MergeWith 指定された FontInfo のフォント プロパティと、このメソッドの呼び出し元のクラスの FontInfo インスタンスを組み合わせます。
注意
このメソッドは、 クラスの現在のインスタンスで設定されていない各プロパティを、 パラメーターの対応するプロパティのFontInfo値に設定することで、2 つのFontInfoオブジェクトのプロパティをf
結合します。 設定されていないプロパティのみが置き換えられます。 パラメーターの f
プロパティが設定されていない場合、 クラスの現在のインスタンス内の対応するプロパティは FontInfo 置き換えされません。
適用対象
こちらもご覧ください
GitHub で Microsoft と共同作業する
このコンテンツのソースは GitHub にあります。そこで、issue や pull request を作成および確認することもできます。 詳細については、共同作成者ガイドを参照してください。
.NET