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
Visual Basic (Declaration)
<LocalizabilityAttribute(LocalizationCategory.None)> _
<TypeConverterAttribute(GetType(FontStyleConverter))> _
Public Structure FontStyle _
Implements IFormattable
Dim instance As FontStyle
[LocalizabilityAttribute(LocalizationCategory.None)]
[TypeConverterAttribute(typeof(FontStyleConverter))]
public struct FontStyle : IFormattable
[LocalizabilityAttribute(LocalizationCategory::None)]
[TypeConverterAttribute(typeof(FontStyleConverter))]
public value class FontStyle : IFormattable
JScript supports the use of structures, but not the declaration of new ones.
<object fontStyleProperty="fontStylesValue"/>
XAML Values
- fontStylesValue
A FontStyles value, such as "Normal", "Italic", or "Oblique".

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>

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.

Platforms
Windows 7, Windows Vista, Windows XP SP2, Windows Server 2008 R2, Windows Server 2008, Windows Server 2003
The .NET Framework and .NET Compact Framework do not support all versions of every platform. For a list of the supported versions, see .NET Framework System Requirements.

Version Information
.NET Framework
Supported in: 3.5, 3.0

See Also