// Copyright (c) Six Labors.
// Licensed under the Six Labors Split License.
namespace SixLabors.Fonts {
///
/// Specifies how text interaction positions are modeled for laid-out text.
///
public enum TextInteractionMode
{
///
/// Uses paragraph-style interaction where trailing breaking whitespace at line ends does not create additional caret stops.
///
Paragraph,
///
/// Uses editor-style interaction where ordinary trailing breaking whitespace at line ends remains addressable by caret movement and selection.
///
Editor
}
}