HtmlTextWriter.RenderBeforeTag Méthode
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.
Écrit tout texte ou espacement survenant avant la balise d'ouverture d'un élément de balisage.
protected:
virtual System::String ^ RenderBeforeTag();
protected virtual string RenderBeforeTag ();
abstract member RenderBeforeTag : unit -> string
override this.RenderBeforeTag : unit -> string
Protected Overridable Function RenderBeforeTag () As String
Retours
Texte ou espacement à écrire avant la balise d'ouverture d'un élément de balisage. Si la méthode n'est pas substituée, null
.
Exemples
L’exemple de code suivant montre comment remplacer la RenderBeforeTag méthode pour déterminer si une classe dérivée de la classe est sur le HtmlTextWriter point de restituer un <label>
élément. Si c’est le cas, le RenderBeforeTag remplacement insère la balise d’ouverture d’un <font>
élément juste avant l’élément <label>
. Si elle ne rend pas un <label>
élément, la méthode de RenderBeforeTag base est utilisée.
// Override the RenderBeforeTag method to add the
// opening tag of a Font element before the
// opening tag of any Label elements rendered by this
// custom markup writer.
virtual String^ RenderBeforeTag() override
{
// Compare the TagName property value to the
// String* label to determine whether the element to
// be rendered is a Label. If it is a Label,
// the opening tag of the Font element, with a Color
// style attribute set to red, is added before
// the Label.
if ( String::Compare( TagName, "label" ) == 0 )
{
return "<font color=\"red\">";
}
// If a Label is not being rendered, use
// the base RenderBeforeTag method.
else
{
return __super::RenderBeforeTag();
}
}
// Override the RenderBeforeTag method to add the
// opening tag of a Font element before the
// opening tag of any Label elements rendered by this
// custom markup writer.
protected override string RenderBeforeTag()
{
// Compare the TagName property value to the
// string label to determine whether the element to
// be rendered is a Label. If it is a Label,
// the opening tag of the Font element, with a Color
// style attribute set to red, is added before
// the Label.
if (String.Compare(TagName, "label") == 0)
{
return "<font color=\"red\">";
}
// If a Label is not being rendered, use
// the base RenderBeforeTag method.
else
{
return base.RenderBeforeTag();
}
}
' Override the RenderBeforeTag method to add the
' opening tag of a Font element before the
' opening tag of any Label elements rendered by this
' custom markup writer.
Protected Overrides Function RenderBeforeTag() As String
' Compare the TagName property value to the
' string label to determine whether the element to
' be rendered is a Label. If it is a Label,
' the opening tag of the Font element, with a Color
' style attribute set to red, is added before
' the Label.
If String.Compare(TagName, "label") = 0 Then
Return "<font color=""red"">"
' If a Label is not being rendered, use
' the base RenderBeforeTag method.
Else
Return MyBase.RenderBeforeTag()
End If
End Function 'RenderBeforeTag
Remarques
La RenderBeforeTag méthode peut être utile si vous souhaitez afficher des balises d’ouverture supplémentaires avant la balise d’ouverture de l’élément prévu.
Notes pour les héritiers
L’implémentation HtmlTextWriter de classe de la RenderBeforeTag() méthode retourne null
. Remplacez RenderBeforeTag() si vous souhaitez écrire du texte ou un espacement avant la balise d’ouverture de l’élément.