Html32TextWriter.RenderBeforeContent Metodo
Definizione
Importante
Alcune informazioni sono relative alla release non definitiva del prodotto, che potrebbe subire modifiche significative prima della release definitiva. Microsoft non riconosce alcuna garanzia, espressa o implicita, in merito alle informazioni qui fornite.
Scrive qualsiasi spaziatura di tabulazione o informazione sul tipo di carattere presente prima del contenuto di un elemento HTML.
protected:
override System::String ^ RenderBeforeContent();
protected override string RenderBeforeContent ();
override this.RenderBeforeContent : unit -> string
Protected Overrides Function RenderBeforeContent () As String
Restituisce
Informazioni relative ai caratteri o alla spaziatura da scrivere prima del rendering del contenuto dell'elemento HTML. In caso contrario, se non esistono informazioni di questo tipo di cui eseguire il rendering, null
.
Esempio
Nell'esempio di codice seguente viene illustrato come eseguire l'override del RenderBeforeContent metodo. Il codice verifica se viene eseguito il rendering di un th
elemento e quindi usa il SupportsBold metodo per verificare se il dispositivo di richiesta può visualizzare la formattazione grassetto. Se il dispositivo supporta la formattazione grassetto, il metodo scrive il RenderBeforeContent tag di apertura di un b
elemento. Se il dispositivo non supporta la formattazione grassetto, il metodo scrive il RenderBeforeContent tag di apertura di un font
elemento con un color
attributo impostato sul valore esadecimale per rosso.
Successivamente, ogni metodo verifica se viene eseguito il rendering di un h4
elemento e quindi usa la SupportsItalic proprietà per verificare se il dispositivo di richiesta può visualizzare la formattazione corsiva. Se il dispositivo supporta la formattazione corsiva, il metodo scrive il RenderBeforeContent tag di apertura di un i
elemento. Se il dispositivo non supporta la formattazione corsiva, il metodo scrive il RenderBeforeContent tag di apertura di un font
elemento con un color
attributo impostato sul valore esadecimale per blu marina.
Questo esempio di codice fa parte di un esempio più grande fornito per la Html32TextWriter classe.
// Override the RenderBeforeContent method to render
// styles before rendering the content of a <th> element.
protected override string RenderBeforeContent()
{
// Check the TagKey property. If its value is
// HtmlTextWriterTag.TH, check the value of the
// SupportsBold property. If true, return the
// opening tag of a <b> element; otherwise, render
// the opening tag of a <font> element with a color
// attribute set to the hexadecimal value for red.
if (TagKey == HtmlTextWriterTag.Th)
{
if (SupportsBold)
return "<b>";
else
return "<font color=\"FF0000\">";
}
// Check whether the element being rendered
// is an <H4> element. If it is, check the
// value of the SupportsItalic property.
// If true, render the opening tag of the <i> element
// prior to the <H4> element's content; otherwise,
// render the opening tag of a <font> element
// with a color attribute set to the hexadecimal
// value for navy blue.
if (TagKey == HtmlTextWriterTag.H4)
{
if (SupportsItalic)
return "<i>";
else
return "<font color=\"000080\">";
}
// Call the base method.
return base.RenderBeforeContent();
}
' Override the RenderBeforeContent method to render
' styles before rendering the content of a <th> element.
Protected Overrides Function RenderBeforeContent() As String
' Check the TagKey property. If its value is
' HtmlTextWriterTag.TH, check the value of the
' SupportsBold property. If true, return the
' opening tag of a <b> element; otherwise, render
' the opening tag of a <font> element with a color
' attribute set to the hexadecimal value for red.
If TagKey = HtmlTextWriterTag.Th Then
If (SupportsBold) Then
Return "<b>"
Else
Return "<font color=""FF0000"">"
End If
End If
' Check whether the element being rendered
' is an <H4> element. If it is, check the
' value of the SupportsItalic property.
' If true, render the opening tag of the <i> element
' prior to the <H4> element's content; otherwise,
' render the opening tag of a <font> element
' with a color attribute set to the hexadecimal
' value for navy blue.
If TagKey = HtmlTextWriterTag.H4 Then
If (SupportsItalic) Then
Return "<i>"
Else
Return "<font color=""000080"">"
End If
End If
' Call the base method.
Return MyBase.RenderBeforeContent()
End Function