Typography.Fraction Property

Definition

Gets or sets a FontFraction enumerated value that indicates the fraction style.

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

Property Value

A FontFraction enumerated value. The default value is Normal.

Remarks

This property gets or sets a value on the object that owns a Typography property, which is the only way to access a Typography class instance. In addition, this property supports an attached property usage so that it can be set on text-containing objects in XAML.

OpenType fonts support styles for fractions, including slashed and stacked.

The following text displays fraction styles for the Palatino Linotype font.

Text using OpenType slashed and stacked fractions
Example of slashed and stacked fraction styles

The following code example shows how to define fraction styles for the Palatino Linotype font, using the Fraction property.

<Paragraph FontFamily="Palatino Linotype" Typography.Fraction="Slashed">
  1/8 1/4 3/8 1/2 5/8 3/4 7/8
</Paragraph>
<Paragraph FontFamily="Palatino Linotype" Typography.Fraction="Stacked">
  1/8 1/4 3/8 1/2 5/8 3/4 7/8
</Paragraph>

XAML Attribute Usage

<object Typography.Fraction="FontFraction"/>

Dependency Property Information

Identifier field FractionProperty
Metadata properties set to true AffectsMeasure, AffectsRender, Inherits

Applies to