TextElement.FontStretch Proprietà

Definizione

Ottiene o imposta le caratteristiche di estensione dei caratteri per il contenuto dell'elemento.

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

Valore della proprietà

FontStretch

Caratteristiche di estensione del carattere desiderate da utilizzare. Il valore predefinito è Normal.

Esempio

Nell'esempio seguente viene illustrato come impostare l'attributo FontStretch usando Paragraph come elemento di esempio.

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

Nella figura seguente viene illustrato come viene eseguito il rendering dell'esempio precedente.

Schermata: testo con le proprietà impostate

Nell'esempio seguente viene illustrato come impostare la FontStretch proprietà a livello di codice.

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

Commenti

Questa proprietà di dipendenza ha anche un utilizzo delle proprietà associate. In XAML l'utilizzo è <object TextElement.FontStretch="value".../>, dove object è un elemento oggetto (in genere un elemento di flusso) contenuto in un TextElementoggetto e il valore è uno dei nomi di proprietà in formato stringa della FontStretch classe . Nel codice l'utilizzo delle GetFontStretch proprietà associate è supportato dai metodi e SetFontStretch . L'utilizzo della proprietà associata non è comune, perché la maggior parte degli elementi che possono essere contenuti in un supporto di una TextElement proprietà analoga non collegata FontStretch , usata dall'host del contenuto per il rendering.

Informazioni proprietà di dipendenza

Campo Identificatore FontStretchProperty
Proprietà dei metadati impostate su true AffectsMeasure, AffectsRender, Inherits

Si applica a