Typography.Variants 屬性
定義
重要
部分資訊涉及發行前產品,在發行之前可能會有大幅修改。 Microsoft 對此處提供的資訊,不做任何明確或隱含的瑕疵擔保。
取得或設定 FontVariants 列舉值,這個值表示要使用的標準印刷格式變化。
public:
property System::Windows::FontVariants Variants { System::Windows::FontVariants get(); void set(System::Windows::FontVariants value); };
public System.Windows.FontVariants Variants { get; set; }
member this.Variants : System.Windows.FontVariants with get, set
Public Property Variants As FontVariants
屬性值
FontVariants 列舉值。 預設值為 Normal。
備註
這個屬性會取得或設定對象上擁有 Typography
屬性的值,這是存取 Typography 類別實例的唯一方法。 此外,這個屬性支援附加屬性的使用方式,以便在 XAML 中包含文字的物件上設定它。
變體類似於上標或下標字型表單。 字型表單可以包含上標與序數表單之間的不同圖像集,或下標與下標與劣質窗體之間的字元集。 Variants 屬性可讓您設定 OpenType 字型的上標和下標值。
下列文字會顯示 Palatino Linotype 字型的上標。
上標範例
下列程式代碼範例示範如何使用 Variants 屬性來定義Palatino Linotype字型的上標。
<Paragraph FontFamily="Palatino Linotype">
2<Run Typography.Variants="Superscript">3</Run>
14<Run Typography.Variants="Superscript">th</Run>
</Paragraph>
下列文字會顯示 Palatino Linotype 字型的下標。
註標範例
下列程式代碼範例示範如何使用 Variants 屬性來定義Palatino Linotype字型的下標。
<Paragraph FontFamily="Palatino Linotype">
H<Run Typography.Variants="Subscript">2</Run>O
Footnote<Run Typography.Variants="Subscript">4</Run>
</Paragraph>
不支援變體的字型可能會有字型格式的演算法近似值。
XAML 屬性使用方式
< 物件Typography.Variants=“FontVariants”/>
相依性屬性資訊
標識元欄位 | VariantsProperty |
設定為 true 的元數據屬性 |
AffectsMeasure、AffectsRender、Inherits |