Freigeben über


Html32TextWriter.SupportsBold Eigenschaft

Definition

Ruft einen booleschen Wert ab, der angibt, ob das anfordernde Gerät fett formatierten HTML-Text unterstützt, oder legt diesen fest. Verwenden Sie die SupportsBold-Eigenschaft zum bedingten Rendern von fett formatiertem Text im Html32TextWriter-Ausgabestream.

public:
 property bool SupportsBold { bool get(); void set(bool value); };
public bool SupportsBold { get; set; }
member this.SupportsBold : bool with get, set
Public Property SupportsBold As Boolean

Eigenschaftswert

Boolean

true, wenn das anfordernde Gerät fett formatierten Text unterstützt, andernfalls false. Der Standardwert ist true.

Beispiele

Im folgenden Codebeispiel wird veranschaulicht, wie Sie die RenderBeforeContent RenderAfterContent Methoden außer Kraft setzen. Jede Außerkraftsetzung überprüft, ob ein Label Element gerendert wird und dann die Methode verwendet, um zu überprüfen, ob das SupportsBold anfordernde Gerät fett formatiert werden kann. Wenn das Gerät fett formatiert wird, schreibt die Methode das öffnende Tag eines b Elements, und die RenderAfterContent RenderBeforeContent Methode schreibt das schließende Tag. Wenn das Gerät keine fett formatierte Formatierung unterstützt, schreibt die RenderBeforeContent Methode das öffnende Tag eines Font Elements mit einem color Attribut, das auf den Hexadezimalwert für Rot festgelegt ist, und die RenderAfterContent Methode schreibt das schließende Tag.

Dieses Codebeispiel ist Teil eines größeren Beispiels, das für die Html32TextWriter Klasse bereitgestellt wird.

// 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

Gilt für

Siehe auch