TextElement.FontStyle Propiedad

Definición

Obtiene o establece el estilo de fuente para el contenido del elemento.

public:
 property System::Windows::FontStyle FontStyle { System::Windows::FontStyle get(); void set(System::Windows::FontStyle value); };
public System.Windows.FontStyle FontStyle { get; set; }
member this.FontStyle : System.Windows.FontStyle with get, set
Public Property FontStyle As FontStyle

Valor de propiedad

Estilo de fuente deseado. El valor predeterminado viene determinado por el valor de MessageFontStyle.

Ejemplos

En el ejemplo siguiente se muestra cómo establecer el FontStyle atributo, mediante el uso de Paragraph como elemento de ejemplo.

<Paragraph
  FontFamily="Century Gothic, Courier New"  
  FontSize="16pt"
  FontStretch="UltraExpanded"
  FontStyle="Italic"
  FontWeight="DemiBold"
>
  <Run>
    This text will use the Century Gothic font (if available), with fallback to Courier New.  It 
    will render with a font size of 16 points in ultra-expanded demi-bold italic.
  </Run>
</Paragraph>

En la ilustración siguiente se muestra cómo se representa el ejemplo anterior.

Captura de pantalla: Texto con propiedades de texto establecida

En el ejemplo siguiente se muestra cómo establecer la propiedad FontStyle mediante programación.

Run run = new Run(
    "This text will use the Century Gothic font (if available), with fallback to Courier New."
    + "It will render with a font size of 16 pixels in ultra-expanded demi-bold italic.");
Paragraph par = new Paragraph(run);

par.FontFamily = new FontFamily("Century Gothic, Courier New");
par.FontSize = 16;
par.FontStretch = FontStretches.UltraExpanded;
par.FontStyle = FontStyles.Italic;
par.FontWeight = FontWeights.DemiBold;
Dim run As New Run("This text will use the Century Gothic font (if available), with fallback to Courier New." & "It will render with a font size of 16 pixels in ultra-expanded demi-bold italic.")
Dim par As New Paragraph(run)

With par
    .FontFamily = New FontFamily("Century Gothic, Courier New")
    .FontSize = 16
    .FontStretch = FontStretches.UltraExpanded
    .FontStyle = FontStyles.Italic
    .FontWeight = FontWeights.DemiBold
End With

Comentarios

Esta propiedad de dependencia también tiene un uso de propiedad adjunta. En XAML, el uso es <object TextElement.FontStyle="value".../>, donde object es un elemento de objeto (normalmente un elemento flow) contenido en , TextElementy value es uno de los nombres de propiedad de formato de cadena de la FontStyles clase . En el código, el uso de la propiedad adjunta es compatible con los GetFontStyle métodos y SetFontStyle . El uso de la propiedad adjunta no es común, ya que la mayoría de los elementos que se pueden contener en una TextElement propiedad análoga no adjunta FontStyle , que el host de contenido usa para la representación.

Información sobre propiedades de dependencia

Campo identificador FontStyleProperty
Propiedades de metadatos establecidas en true AffectsMeasure, AffectsRender, Inherits

Se aplica a