TextDirection.cs 139 B

123456789
  1. namespace QuestPDF.Infrastructure
  2. {
  3. internal enum TextDirection
  4. {
  5. Auto,
  6. LeftToRight,
  7. RightToLeft
  8. }
  9. }