TextElement.FontStretch Propriété

Définition

Obtient ou définit les caractéristiques d’étirement de police pour le contenu de l’élément.

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

Valeur de propriété

FontStretch

Caractéristiques d’étirement de police souhaitées à utiliser. La valeur par défaut est Normal.

Exemples

L’exemple suivant montre comment définir l’attribut FontStretch , à l’aide Paragraph de l’exemple d’élément.

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

La figure suivante montre comment l’exemple précédent s’affiche.

Capture d'écran : texte avec propriétés de texte définies

L’exemple suivant montre comment définir la FontStretch propriété par programmation.

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

Remarques

Cette propriété de dépendance a également une utilisation de propriété jointe. En XAML, l’utilisation est <object TextElement.FontStretch="value".../>, où l’objet est un élément d’objet (généralement un élément de flux) contenu dans un TextElement, et la valeur est l’un des noms de propriétés au format chaîne de la FontStretch classe. Dans le code, l’utilisation des propriétés jointes est prise en charge par les méthodes et SetFontStretch les GetFontStretch méthodes. L’utilisation des propriétés jointes n’est pas courante, car la plupart des éléments qui peuvent être contenus dans une TextElement propriété de prise en charge analogue non attachée FontStretch , que l’hôte de contenu utilise pour le rendu.

Informations sur les propriétés de dépendance

Champ d’identificateur FontStretchProperty
Propriétés de métadonnées définies sur true AffectsMeasure, AffectsRender, Inherits

S’applique à