// Copyright (c) Six Labors. // Licensed under the Six Labors Split License. namespace SixLabors.Fonts { /// /// Specifies the writing direction for text. /// public enum TextDirection { /// /// Left to right. /// LeftToRight = 0, /// /// Right to left. /// RightToLeft = 1, /// /// Automatically determined. /// Auto = 2, } }