HtmlTextWriter.TagName プロパティ
定義
重要
一部の情報は、リリース前に大きく変更される可能性があるプレリリースされた製品に関するものです。 Microsoft は、ここに記載されている情報について、明示または黙示を問わず、一切保証しません。
レンダリングされるマークアップ要素のタグ名を取得または設定します。
protected:
property System::String ^ TagName { System::String ^ get(); void set(System::String ^ value); };
protected string TagName { get; set; }
member this.TagName : string with get, set
Protected Property TagName As String
プロパティ値
出力されるマークアップ要素のタグ名。
例
次のコード例は、クラスから派生する RenderBeforeTag クラス内のメソッドのオーバーライドされたバージョンを HtmlTextWriter 示しています。 コード例では、レンダリングする要素が要素であるかどうかを確認するには、メソッドを<label>
String.Compare呼び出し、プロパティ値と文字列"label"
をパラメーター引数として渡TagNameします。 要素が<label>
レンダリングされようとしている場合、属性が設定red
された要素の<font>
開始タグは、color
要素の開始タグの前に<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
注釈
この TagName プロパティは、クラスから継承するクラスにのみ使用されます HtmlTextWriter 。 プロパティは、メソッド呼び出しでのみRenderBeginTag読み取りまたは設定TagNameする必要があります。これは、一貫性のある値に設定される唯一の時間です。