enums.py 296 B

1234567891011
  1. #Copyright ReportLab Europe Ltd. 2000-2017
  2. #see license.txt for license details
  3. #history https://hg.reportlab.com/hg-public/reportlab/log/tip/src/reportlab/lib/enums.py
  4. __version__='3.3.0'
  5. __doc__="""
  6. Container for constants. Hardly used!
  7. """
  8. TA_LEFT = 0
  9. TA_CENTER = 1
  10. TA_RIGHT = 2
  11. TA_JUSTIFY = 4