TextBox.Typography Property
[This documentation is for preview only, and is subject to change in later releases. Blank topics are included as placeholders.]
Gets the currently effective typography variations for the text contents of the text box.
Namespace: System.Windows.Controls
Assembly: PresentationFramework (in PresentationFramework.dll)
Property Value
Type: System.Windows.Documents.TypographyA Typography object that specifies the currently effective typography variations. For a list of default typography values, see Typography.
The Typography property is applicable only to OpenType fonts. A typography variant has no effect on fonts that do not support the variant. For more information about this topic, see Typography in WPF.
The following example shows how to set the Typography attribute, using Paragraph as the example element.
<Paragraph TextAlignment="Left" FontSize="18" FontFamily="Palatino Linotype" Typography.NumeralStyle="OldStyle" Typography.Fraction="Stacked" Typography.Variants="Inferior" > <Run> This text has some altered typography characteristics. Note that use of an open type font is necessary for most typographic properties to be effective. </Run> <LineBreak/><LineBreak/> <Run> 0123456789 10 11 12 13 </Run> <LineBreak/><LineBreak/> <Run> 1/2 2/3 3/4 </Run> </Paragraph>
The following figure shows how this example renders.

In contrast, the following figure shows how a similar example with default typographic properties renders.

The following example shows how to set the Typography property programmatically.
Paragraph par = new Paragraph(); Run runText = new Run( "This text has some altered typography characteristics. Note" + "that use of an open type font is necessary for most typographic" + "properties to be effective."); Run runNumerals = new Run("0123456789 10 11 12 13"); Run runFractions = new Run("1/2 2/3 3/4"); par.Inlines.Add(runText); par.Inlines.Add(new LineBreak()); par.Inlines.Add(new LineBreak()); par.Inlines.Add(runNumerals); par.Inlines.Add(new LineBreak()); par.Inlines.Add(new LineBreak()); par.Inlines.Add(runFractions); par.TextAlignment = TextAlignment.Left; par.FontSize = 18; par.FontFamily = new FontFamily("Palatino Linotype"); par.Typography.NumeralStyle = FontNumeralStyle.OldStyle; par.Typography.Fraction = FontFraction.Stacked; par.Typography.Variants = FontVariants.Inferior;
Windows 8 Consumer Preview, Windows Server 8 Beta, Windows 7, Windows Server 2008 SP2, Windows Server 2008 R2 (Server Core Role supported with SP1 or later; Itanium not supported)
The .NET Framework does not support all versions of every platform. For a list of the supported versions, see .NET Framework System Requirements.