Inline.FontFamily Property

Gets or sets the preferred top-level font family for the content in this element.

Namespace:  System.Windows.Documents
Assembly:  System.Windows (in System.Windows.dll)

Syntax

'Declaration
Public Property FontFamily As FontFamily
    Get
    Set
'Usage
Dim instance As Inline
Dim value As FontFamily

value = instance.FontFamily

instance.FontFamily = value
public FontFamily FontFamily { get; set; }
<inline FontFamily="fontFamily" />
-or-
<inline FontFamily="fontFamilyName[,fallbackFontFamilyName]" />
-or-
<inline FontFamily="fontURI#fontFamily" />

XAML Values

  • fontFamily
    A single font family name, for example "Verdana".

  • fontFamilyName[,fallbackFontFamilyName]
    A primary font family choice then one or more fallback font family choices, for example "Arial Unicode MS, Arial". See Remarks.

  • fontURI#fontFamily
    Used for non-default fonts. Specifies the resource location in the assembly for a font file, and a font family within that font. For information on this usage, see FontFamily. For more information on relative URIs for accessing font resources, see Resource Files.

Property Value

Type: System.Windows.Media.FontFamily
The preferred font family, or a primary preferred font family with one or more fallback font families. See FontFamily for default information.

Remarks

Dependency property identifier field: FontFamilyProperty

A font family is a set of typefaces that share the same family name, such as "Times New Roman", but that differ in features. These font family feature differences include font style, such as italic, and font weight, such as bold. For more information, including information on the XAML usage, see FontFamily. Restrictions apply when specifying a font file or a zip file containing font files. See Text and Fonts for details.

Note

As with most types of software, font files are licensed, rather than sold, and licenses that govern the use of fonts vary from vendor to vendor. As a developer it is your responsibility to ensure that you have the required license rights for any font you embed within a document or application, or otherwise redistribute.

Version Information

Silverlight

Supported in: 3

Silverlight for Windows Phone

Supported in: Windows Phone OS 7.0

Platforms

For a list of the operating systems and browsers that are supported by Silverlight, see Supported Operating Systems and Browsers.

See Also

Reference

Inline Class

System.Windows.Documents Namespace

FontSize

FontStretch

FontStyle

FontWeight

Other Resources

Text and Fonts