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

21 lines
510 B
C#

// Copyright (c) Six Labors.
// Licensed under the Six Labors Split License.
namespace SixLabors.Fonts {
/// <summary>
/// Specifies an absolute caret placement within a laid-out text scope.
/// </summary>
public enum CaretPlacement
{
/// <summary>
/// Place the caret at the start of the laid-out text scope.
/// </summary>
Start,
/// <summary>
/// Place the caret at the end of the laid-out text scope.
/// </summary>
End
}
}