Click to Rate and Give Feedback
MSDN
MSDN Library
.NET Development
.NET Framework 4
System.Windows
FontStyles Class
Collapse All/Expand All Collapse All
This page is specific to
Microsoft Visual Studio 2010/.NET Framework 4

Other versions are also available for the following:
.NET Framework Class Library
FontStyles Class

Provides a set of static predefined FontStyle values.

System..::.Object
  System.Windows..::.FontStyles

Namespace:  System.Windows
Assembly:  PresentationCore (in PresentationCore.dll)
Visual Basic
Public NotInheritable Class FontStyles
C#
public static class FontStyles
Visual C++
public ref class FontStyles abstract sealed
F#
[<AbstractClass>]
[<Sealed>]
type FontStyles =  class end

The FontStyles type exposes the following members.

  NameDescription
Public propertyStatic memberItalicSpecifies an italic FontStyle.
Public propertyStatic memberNormalSpecifies a normal FontStyle.
Public propertyStatic memberObliqueSpecifies an oblique FontStyle.
Top

A font style refers to the slant of a font: normal, italic, and oblique.

Font style

Description

Normal

The characters in a normal, or roman, font are upright.

Italic

The characters in an italic font are truly slanted and appear as they were designed.

Oblique

The characters in an oblique font are artificially slanted

For Oblique, the slant is achieved by performing a shear transformation on the characters from a normal font. When a true italic font is not available on a computer or printer, an oblique style can be generated from the normal font and used to simulate an italic font.

The following illustration shows the normal, italic, and oblique font styles for the Palatino Linotype font. Notice how the italic font style has a more flowing and visually appealing appearance than the oblique font style, which is simply created by skewing the normal font style version of the text.

Example of font styles

normal, italic, and oblique font styles

In the following code example, Normal, Italic, and Oblique are used to define the font styles for the TextBlock objects.

XAML
<TextBlock FontStyle="Normal">Normal font style</TextBlock>
<TextBlock FontStyle="Italic">Italic font style</TextBlock>
<TextBlock FontStyle="Oblique">Oblique font style</TextBlock>

.NET Framework

Supported in: 4, 3.5, 3.0

.NET Framework Client Profile

Supported in: 4, 3.5 SP1

Windows 7, Windows Vista SP1 or later, Windows XP SP3, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2

The .NET Framework does not support all versions of every platform. For a list of the supported versions, see .NET Framework System Requirements.
Any public static (Shared in Visual Basic) members of this type are thread safe. Any instance members are not guaranteed to be thread safe.
Tags What's this?: Add a tag
Community Content   What is Community Content?
Add new content RSS  Annotations
Processing
© 2012 Microsoft. All rights reserved. Terms of Use | Trademarks | Privacy Statement
Page view tracker