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