HorizontalAlign.lua 469 B

1234567891011121314151617181920212223
  1. return {
  2. summary = 'Different ways to horizontally align text.',
  3. description = 'Different ways to horizontally align text with `Pass:text`.',
  4. values = {
  5. {
  6. name = 'left',
  7. description = 'Left-aligned text.'
  8. },
  9. {
  10. name = 'center',
  11. description = 'Centered text.'
  12. },
  13. {
  14. name = 'right',
  15. description = 'Right-aligned text.'
  16. }
  17. },
  18. related = {
  19. 'VerticalAlign',
  20. 'Pass:text',
  21. 'Font:getVertices'
  22. }
  23. }