共用方式為


Typography.NumeralStyle 屬性

定義

取得或設定 FontNumeralStyle 列舉值,這個值決定用來呈現數值替代字型表單的字元集。

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

屬性值

FontNumeralStyle 列舉值。 預設值為 Normal

備註

這個屬性會取得或設定對象上擁有 Typography 屬性的值,這是存取 Typography 類別實例的唯一方法。 此外,這個屬性支援附加屬性的使用方式,以便在 XAML 中包含文字的物件上設定它。

OpenType 字型支援舊樣式數位格式。 此格式適用於在不再標準的樣式中顯示數位。 下列文字顯示 Palatino Linotype 字型的標準和舊樣式數位格式的 18 世紀日期。

使用 OpenType 舊樣式數位
標準和舊樣式數位的範例

下列文字會顯示Palatino Linotype字型的標準數位,後面接著舊樣式數位。

使用 OpenType 舊樣式數位集
標準和舊樣式數位集的範例

下列程式代碼範例示範如何使用 NumeralStyle 屬性,定義Palatino Linotype字型的舊樣式數位。

<Paragraph FontFamily="Palatino Linotype">
  <Run Typography.NumeralStyle="Normal">1234567890</Run>
  <Run Typography.NumeralStyle="OldStyle">1234567890</Run>
</Paragraph>

XAML 屬性使用方式

< 物件Typography.NumeralStyle=“FontNumeralStyle”/>

相依性屬性資訊

標識元欄位 NumeralStyleProperty
設定為 true 的元數據屬性 AffectsMeasureAffectsRenderInherits

適用於

另請參閱