Compartilhar via


Html32TextWriter.RenderAfterTag Método

Definição

Grava o espaçamento ou texto que ocorre após a marca de fechamento de um elemento HTML.

protected:
 override System::String ^ RenderAfterTag();
protected override string RenderAfterTag ();
override this.RenderAfterTag : unit -> string
Protected Overrides Function RenderAfterTag () As String

Retornos

String

O espaçamento ou o texto a ser gravado após a marca de fechamento do elemento HTML; caso contrário, se não houver nenhuma dessas informações para renderizar, null.

Exemplos

O exemplo de código a seguir demonstra como substituir o RenderAfterTag método. O código verifica se um a elemento está sendo renderizado. Nesse caso, o RenderAfterTag método grava a marca de fechamento de um small elemento. O exemplo do RenderBeforeTag método executa a mesma verificação para o a elemento e grava a marca de abertura do small elemento.

Este exemplo de código faz parte de um exemplo maior fornecido para a Html32TextWriter classe.

// Override the RenderAfterTag method to render
// close any elements opened in the RenderBeforeTag
// method call.
protected override string RenderAfterTag()
{
    // Check whether the element being rendered is an
    // <a> element. If so, render the closing tag of the
    // <small> element; otherwise, call the base method.
    if (TagKey == HtmlTextWriterTag.A)
        return "</small>";
    return base.RenderAfterTag();
}
' Override the RenderAfterTag method to render
' close any elements opened in the RenderBeforeTag
' method call.
Protected Overrides Function RenderAfterTag() As String
    ' Check whether the element being rendered is an
    ' <a> element. If so, render the closing tag of the
    ' <small> element; otherwise, call the base method.
    If TagKey = HtmlTextWriterTag.A Then
        Return "</small>"
    End If
    Return MyBase.RenderAfterTag()
End Function

Aplica-se a

Confira também