HtmlTextWriter.EndTagLeftChars 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 left angle bracket and slash mark (</) of the closing tag of a markup element.
public: System::String ^ EndTagLeftChars;
public const string EndTagLeftChars;
val mutable EndTagLeftChars : string
Public Const EndTagLeftChars As String
Field Value
Examples
The following code example shows how to render the closing tag of a <table>
markup element by using the EndTagLeftChars and the TagRightChar fields as parameter values in calls to the Write method.
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 EndTagLeftChars field is used by the RenderBeginTag method to construct markup element end tags.