HtmlTextWriter.TagRightChar Champ
Définition
Important
Certaines informations portent sur la préversion du produit qui est susceptible d’être en grande partie modifiée avant sa publication. Microsoft exclut toute garantie, expresse ou implicite, concernant les informations fournies ici.
Représente le crochet fermant (>) d’une balise.
public: char TagRightChar;
public const char TagRightChar;
val mutable TagRightChar : char
Public Const TagRightChar As Char
Valeur de champ
Exemples
L’exemple de code suivant montre comment restituer la balise fermante d’un <table>
élément en effectuant des appels à des surcharges de la Write méthode. Pour afficher le caractère final de la balise, l’exemple de code utilise la Write méthode avec le TagRightChar champ comme paramètre.
Cet exemple de code affiche le balisage suivant :
</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()
Remarques
Le TagRightChar champ est utilisé par les méthodes , WriteFullBeginTaget WriteEndTag lors de l’écriture RenderBeginTagde balises de balisage.