HtmlTextWriter.SelfClosingTagEnd Champ

Définition

Représente la barre oblique de fermeture et le crochet droit (/>) d’un élément de balisage de fermeture automatique.

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

Valeur de champ

Exemples

L’exemple de code suivant montre comment afficher la valeur d’une propriété personnalisée FileName suivie d’un guillemet et des caractères représentés par le SelfClosingTagEnd champ. L’exemple de code appelle la Write méthode et passe le SelfClosingTagEnd champ comme argument de paramètre pour fermer l’élément.

Cet exemple de code restitue la valeur de la FileName propriété, puis le balisage suivant :

" />

// Write the name of the image file from the 
// FileName property, close the path, and then
// close the <img> element.
writer.Write(FileName);
writer.Write(HtmlTextWriter.DoubleQuoteChar);
writer.Write(HtmlTextWriter.SelfClosingTagEnd);
' Write the name of the image file from the 
' FileName property, close the path, and then
' close the <img> element.
writer.Write(FileName)
writer.Write(HtmlTextWriter.DoubleQuoteChar)
writer.Write(HtmlTextWriter.SelfClosingTagEnd)

Remarques

Le SelfClosingTagEnd champ est utilisé par la méthode lors de la RenderBeginTag construction d’éléments de balisage à fermeture automatique.

S’applique à

Voir aussi