21 lines
510 B
C#
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
|
|
}
|
|
}
|