HtmlTextWriter.RenderBeforeContent Método
Definição
Importante
Algumas informações se referem a produtos de pré-lançamento que podem ser substancialmente modificados antes do lançamento. A Microsoft não oferece garantias, expressas ou implícitas, das informações aqui fornecidas.
Grava qualquer texto ou espaçamento antes do conteúdo e após a marca de abertura de um elemento de marcação.
protected:
virtual System::String ^ RenderBeforeContent();
protected virtual string RenderBeforeContent ();
abstract member RenderBeforeContent : unit -> string
override this.RenderBeforeContent : unit -> string
Protected Overridable Function RenderBeforeContent () As String
Retornos
O texto ou espaçamento a gravar antes do conteúdo do elemento. Se não for substituído, RenderBeforeContent() retorna null
.
Exemplos
O exemplo de código a seguir mostra como substituir o RenderBeforeContent método para determinar se uma classe derivada da HtmlTextWriter classe está prestes a renderizar um <label>
elemento. Nesse caso, a RenderBeforeContent substituição insere a marca de abertura de um <font>
elemento imediatamente após a marca de abertura do <label>
elemento. Se não for um <label>
elemento, o RenderBeforeContent método base será usado.
// Override the RenderBeforeContent method to write
// a font element that applies red to the text in a Label element.
virtual String^ RenderBeforeContent() override
{
// Check to determine whether the element being rendered
// is a label element. If so, render the opening tag
// of the font element; otherwise, call the base method.
if ( TagKey == HtmlTextWriterTag::Label )
{
return "<font color=\"red\">";
}
else
{
return __super::RenderBeforeContent();
}
}
// Override the RenderBeforeContent method to write
// a font element that applies red to the text in a Label element.
protected override string RenderBeforeContent()
{
// Check to determine whether the element being rendered
// is a label element. If so, render the opening tag
// of the font element; otherwise, call the base method.
if (TagKey == HtmlTextWriterTag.Label)
{
return "<font color=\"red\">";
}
else
{
return base.RenderBeforeContent();
}
}
' Override the RenderBeforeContent method to write
' a font element that applies red to the text in a Label element.
Protected Overrides Function RenderBeforeContent() As String
' Check to determine whether the element being rendered
' is a label element. If so, render the opening tag
' of the font element; otherwise, call the base method.
If TagKey = HtmlTextWriterTag.Label Then
Return "<font color=""red"">"
Else
Return MyBase.RenderBeforeContent()
End If
End Function 'RenderBeforeContent
Comentários
O RenderBeforeContent método pode ser útil se você quiser inserir elementos filho no elemento de marcação atual antes da marcação interna.
Notas aos Herdeiros
A HtmlTextWriter implementação de classe do RenderBeforeContent() método retorna null
. Substitua RenderBeforeContent() se você quiser escrever texto ou espaçamento após a marca de abertura, mas antes do conteúdo do elemento.