HtmlTextWriter.EndTagLeftChars フィールド

定義

マークアップ要素の終了タグの左山かっことスラッシュ記号 (</) を表します。

public: System::String ^ EndTagLeftChars;
public const string EndTagLeftChars;
val mutable EndTagLeftChars : string
Public Const EndTagLeftChars As String 

フィールド値

次のコード例では、 メソッドの呼び出しで、 フィールドと フィールドを<table>パラメーター値として使用EndTagLeftCharsして、マークアップ要素の終了タグをレンダリングする方法をWriteTagRightCharします。

このコード例では、次のマークアップをレンダリングします。

</table>

// Write the closing tag of a table element.
writer.Write(HtmlTextWriter.EndTagLeftChars);
writer.Write("table");
writer.Write(HtmlTextWriter.TagRightChar);
writer.WriteLine();
' Write the closing tag of a table element.
writer.Write(HtmlTextWriter.EndTagLeftChars)
writer.Write("table")
writer.Write(HtmlTextWriter.TagRightChar)
writer.WriteLine()

注釈

フィールドは EndTagLeftChars 、 メソッドによってマークアップ要素の RenderBeginTag 終了タグを構築するために使用されます。

適用対象

こちらもご覧ください