|
// Licensed to the .NET Foundation under one or more agreements.
// The .NET Foundation licenses this file to you under the MIT license.
namespace System.Drawing.Text;
/// <summary>
/// Specifies a generic <see cref='FontFamily'/>.
/// </summary>
public enum GenericFontFamilies
{
/// <summary>
/// A generic Serif <see cref='FontFamily'/>.
/// </summary>
Serif,
/// <summary>
/// A generic SansSerif <see cref='FontFamily'/>.
/// </summary>
SansSerif,
/// <summary>
/// A generic Monospace <see cref='FontFamily'/>.
/// </summary>
Monospace
}
|