A cross-platform UI framework for .NET
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 

18 lines
629 B

namespace Avalonia.Media
{
/// <summary>
/// Font fallback definition that is used to override the default fallback lookup of the current <see cref="FontManager"/>
/// </summary>
public class FontFallback
{
/// <summary>
/// Get or set the fallback <see cref="FontFamily"/>
/// </summary>
public FontFamily FontFamily { get; set; } = FontFamily.Default;
/// <summary>
/// Get or set the <see cref="UnicodeRange"/> that is covered by the fallback.
/// </summary>
public UnicodeRange UnicodeRange { get; set; } = UnicodeRange.Default;
}
}