HtmlTextWriter.EndTagLeftChars Pole

Definice

Představuje levou lomítkovou závorku a lomítko (</) uzavírací značky elementu značky.

public: System::String ^ EndTagLeftChars;
public const string EndTagLeftChars;
val mutable EndTagLeftChars : string
Public Const EndTagLeftChars As String 

Hodnota pole

Příklady

Následující příklad kódu ukazuje, jak vykreslit závěrečnou značku elementu <table> značky pomocí EndTagLeftChars polí a TagRightChar jako hodnot parametrů ve volání Write metody .

Tento příklad kódu vykreslí následující kód:

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

Poznámky

Pole EndTagLeftChars se používá metodou RenderBeginTag k vytvoření koncových značek elementů značek.

Platí pro

Viz také