HtmlTextWriter.TagRightChar Field
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
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()
The TagRightChar field is used by the RenderBeginTag, WriteFullBeginTag, and WriteEndTag methods when writing markup tags.
Product | Versions |
---|---|
.NET Framework | 1.1, 2.0, 3.0, 3.5, 4.0, 4.5, 4.5.1, 4.5.2, 4.6, 4.6.1, 4.6.2, 4.7, 4.7.1, 4.7.2, 4.8, 4.8.1 |
.NET feedback
.NET is an open source project. Select a link to provide feedback: