ImageSharp/SixLabors.Fonts/IReadOnlySystemFontCollection.cs
2026-08-03 22:31:27 +02:00

20 lines
580 B
C#

// Copyright (c) Six Labors.
// Licensed under the Six Labors Split License.
using System.Collections.Generic;
namespace SixLabors.Fonts {
/// <summary>
/// Represents a readonly collection of Operating System fonts.
/// </summary>
public interface IReadOnlySystemFontCollection : IReadOnlyFontCollection
{
/// <summary>
/// <para>
/// Gets the collection of Operating System directories that were searched for font families.
/// </para>
/// </summary>
public IEnumerable<string> SearchDirectories { get; }
}
}