Compartilhar via


Typeface.Stretch Propriedade

Definição

O valor de ampliação para o Typeface. O valor de ampliação determina se uma face de tipos é expandida ou condensada quando exibida.

public:
 property System::Windows::FontStretch Stretch { System::Windows::FontStretch get(); };
public System.Windows.FontStretch Stretch { get; }
member this.Stretch : System.Windows.FontStretch
Public ReadOnly Property Stretch As FontStretch

Valor da propriedade

FontStretch

Um FontStretch valor que representa o valor de alongamento para a face de tipo.

Exemplos

// Get the font stretch value for the typeface.
FontStretch fontStretch = typeface.Stretch;

if (fontStretch == FontStretches.Condensed)
{
    // Perform action based on condensed stretch value.
}
' Get the font stretch value for the typeface.
Dim fontStretch As FontStretch = typeface.Stretch

If fontStretch = FontStretches.Condensed Then
    ' Perform action based on condensed stretch value.
End If

Comentários

Um valor de estiramento de fonte descreve o grau em que um formulário de fonte é estendido de sua taxa de proporção normal, que é a taxa de largura e altura original especificada para os glifos na fonte.

Aplica-se a