Html32TextWriter.SupportsItalic Propriedade
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.
Obtém ou define um valor booliano que indica se a solicitação do dispositivo dá suporte a texto HTML em itálico. Use a propriedade SupportsItalic para renderizar condicionalmente texto em itálico para o fluxo de saída Html32TextWriter.
public:
property bool SupportsItalic { bool get(); void set(bool value); };
public bool SupportsItalic { get; set; }
member this.SupportsItalic : bool with get, set
Public Property SupportsItalic As Boolean
Valor da propriedade
true
se o dispositivo solicitante der suporte a texto itálico; caso contrário, false
. O padrão é true
.
Exemplos
O exemplo de código a seguir demonstra como substituir os métodos e RenderAfterContent os RenderBeforeContent métodos. Cada substituição verifica se um span
elemento está sendo renderizado e usa a SupportsItalic propriedade para verificar se o dispositivo solicitante pode exibir formatação itálica. Se o dispositivo der suporte à formatação itálica, o RenderBeforeContent método gravará a marca de abertura de um i
elemento e o RenderAfterContent método gravará sua marca de fechamento. Se o dispositivo não oferecer suporte à formatação itálica, o RenderBeforeContent método gravará a marca de abertura de um Font
elemento com um color
atributo definido como o valor hexadecimal para azul marinho e o RenderAfterContent método gravará a marca de fechamento.
Este exemplo de código faz parte de um exemplo maior fornecido para a 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