HtmlTextWriter.TagLeftChar フィールド

定義

マークアップ タグの開始山かっこ (<) を表します。

public: char TagLeftChar;
public const char TagLeftChar;
val mutable TagLeftChar : char
Public Const TagLeftChar As Char 

フィールド値

次のコード例では、要素名を持つ要素の開始タグの最初の <table> 文字をレンダリングします。 このコード例では、 フィールドを Write パラメーターとして 使用する TagLeftChar メソッドを使用します。

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

<table

// Create the opening tag of a table element
// with styles by using the HtmlTextWriter class.
writer.Write(HtmlTextWriter.TagLeftChar);
writer.Write("table");
' Create the opening tag of a table element
' with styles by using the HtmlTextWriter class. 
writer.Write(HtmlTextWriter.TagLeftChar)
writer.Write("table")

注釈

フィールドは TagLeftChar 、マークアップ タグを RenderBeginTag記述するときに、、 WriteBeginTagWriteFullBeginTag、および WriteEndTag の各メソッドによって使用されます。

適用対象

こちらもご覧ください