// Copyright (c) Six Labors. // Licensed under the Six Labors Split License. namespace SixLabors.Fonts { /// /// Specifies ellipsis behavior when laid-out text is limited to a maximum number of lines. /// public enum TextEllipsis { /// /// Do not insert an ellipsis marker. /// None = 0, /// /// Insert the standard ellipsis marker. /// Standard, /// /// Insert the marker specified by . /// Custom } }