11 lines
296 B
Python
11 lines
296 B
Python
#Copyright ReportLab Europe Ltd. 2000-2017
|
|
#see license.txt for license details
|
|
#history https://hg.reportlab.com/hg-public/reportlab/log/tip/src/reportlab/lib/enums.py
|
|
__version__='3.3.0'
|
|
__doc__="""
|
|
Container for constants. Hardly used!
|
|
"""
|
|
TA_LEFT = 0
|
|
TA_CENTER = 1
|
|
TA_RIGHT = 2
|
|
TA_JUSTIFY = 4 |