HtmlTextWriter.TagRightChar Field
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
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.