HtmlTextWriter.RenderBeforeTag メソッド
定義
重要
一部の情報は、リリース前に大きく変更される可能性があるプレリリースされた製品に関するものです。 Microsoft は、ここに記載されている情報について、明示または黙示を問わず、一切保証しません。
マークアップ要素の開始タグの前に出現するテキストまたは空白文字を書き込みます。
protected:
virtual System::String ^ RenderBeforeTag();
protected virtual string RenderBeforeTag ();
abstract member RenderBeforeTag : unit -> string
override this.RenderBeforeTag : unit -> string
Protected Overridable Function RenderBeforeTag () As String
戻り値
マークアップ要素の開始タグの前に書き込むテキストまたは空白文字。 オーバーライドされない場合は null
。
例
次のコード例は、メソッドを RenderBeforeTag オーバーライドして、クラスから派生したクラスが要素を HtmlTextWriter レンダリングしようとしているかどうかを判断する方法を <label>
示しています。 その場合、オーバーライドは RenderBeforeTag 要素の開始タグを <font>
要素の直前に <label>
挿入します。 要素をレンダリング <label>
していない場合は、 RenderBeforeTag 基本メソッドが使用されます。
// Override the RenderBeforeTag method to add the
// opening tag of a Font element before the
// opening tag of any Label elements rendered by this
// custom markup writer.
virtual String^ RenderBeforeTag() override
{
// Compare the TagName property value to the
// String* label to determine whether the element to
// be rendered is a Label. If it is a Label,
// the opening tag of the Font element, with a Color
// style attribute set to red, is added before
// the Label.
if ( String::Compare( TagName, "label" ) == 0 )
{
return "<font color=\"red\">";
}
// If a Label is not being rendered, use
// the base RenderBeforeTag method.
else
{
return __super::RenderBeforeTag();
}
}
// Override the RenderBeforeTag method to add the
// opening tag of a Font element before the
// opening tag of any Label elements rendered by this
// custom markup writer.
protected override string RenderBeforeTag()
{
// Compare the TagName property value to the
// string label to determine whether the element to
// be rendered is a Label. If it is a Label,
// the opening tag of the Font element, with a Color
// style attribute set to red, is added before
// the Label.
if (String.Compare(TagName, "label") == 0)
{
return "<font color=\"red\">";
}
// If a Label is not being rendered, use
// the base RenderBeforeTag method.
else
{
return base.RenderBeforeTag();
}
}
' Override the RenderBeforeTag method to add the
' opening tag of a Font element before the
' opening tag of any Label elements rendered by this
' custom markup writer.
Protected Overrides Function RenderBeforeTag() As String
' Compare the TagName property value to the
' string label to determine whether the element to
' be rendered is a Label. If it is a Label,
' the opening tag of the Font element, with a Color
' style attribute set to red, is added before
' the Label.
If String.Compare(TagName, "label") = 0 Then
Return "<font color=""red"">"
' If a Label is not being rendered, use
' the base RenderBeforeTag method.
Else
Return MyBase.RenderBeforeTag()
End If
End Function 'RenderBeforeTag
注釈
このメソッドは RenderBeforeTag 、目的の要素の開始タグの前に追加の開始タグをレンダリングする場合に便利です。
注意 (継承者)
メソッドのクラス実装がHtmlTextWriterRenderBeforeTag()返されますnull
。 要素の開始タグの前にテキストまたは間隔を書き込む場合は、オーバーライド RenderBeforeTag() します。