HtmlTextWriter.TagRightChar Field

Definition

Represents the closing angle bracket (>) of a markup tag.

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

Field Value

Examples

The following code example shows how to render the closing tag of a <table> element by making calls to overloads of the Write method. To render the final character of the tag, the code example uses the Write method with the TagRightChar field as a parameter.

This code example renders the following markup:

</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()

Remarks

The TagRightChar field is used by the RenderBeginTag, WriteFullBeginTag, and WriteEndTag methods when writing markup tags.

Applies to

See also