Defines a structure that represents the style of a font face as normal, italic, or oblique.
Namespace:
System.Windows
Assembly:
PresentationCore (in PresentationCore.dll)
XMLNS for XAML: http://schemas.microsoft.com/winfx/2006/xaml/presentation, http://schemas.microsoft.com/netfx/2007/xaml/presentation

Syntax
<TypeConverterAttribute(GetType(FontStyleConverter))> _
<LocalizabilityAttribute(LocalizationCategory.None)> _
Public Structure FontStyle _
Implements IFormattable
[TypeConverterAttribute(typeof(FontStyleConverter))]
[LocalizabilityAttribute(LocalizationCategory.None)]
public struct FontStyle : IFormattable
[TypeConverterAttribute(typeof(FontStyleConverter))]
[LocalizabilityAttribute(LocalizationCategory::None)]
public value class FontStyle : IFormattable
[<Sealed>]
[<TypeConverterAttribute(typeof(FontStyleConverter))>]
[<LocalizabilityAttribute(LocalizationCategory.None)>]
type FontStyle =
struct
interface IFormattable
end
<object fontStyleProperty="fontStylesValue"/>
XAML Values
- fontStylesValue
A FontStyles value, such as "Normal", "Italic", or "Oblique".
The FontStyle type exposes the following members.

Methods

Explicit Interface Implementations

Remarks
Three terms categorize 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. 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 generated from the normal font and used to simulate an italic font. |
You can use the enumerated values of the FontStyles class to set the FontStyle structure.

Examples
The following example sets "Italic" as the FontStyle.
<TextBlock FontStyle="Italic">Italic font style</TextBlock>

Version Information
.NET Framework
Supported in: 4, 3.5, 3.0
.NET Framework Client Profile
Supported in: 4, 3.5 SP1

Platforms
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.

Thread Safety
Any public
static (
Shared in Visual Basic) members of this type are thread safe. Any instance members are not guaranteed to be thread safe.

See Also