author | andy_robinson |
Wed, 24 Jul 2002 19:56:39 +0000 | |
changeset 1683 | 7fa753e4420a |
parent 494 | 54257447cfe9 |
child 2332 | 2a7ab4405e18 |
permissions | -rw-r--r-- |
494 | 1 |
#copyright ReportLab Inc. 2000 |
2 |
#see license.txt for license details |
|
3 |
#history http://cvs.sourceforge.net/cgi-bin/cvsweb.cgi/reportlab/lib/enums.py?cvsroot=reportlab |
|
1683 | 4 |
#$Header: /tmp/reportlab/reportlab/lib/enums.py,v 1.3 2002/07/24 19:56:37 andy_robinson Exp $ |
5 |
__version__=''' $Id: enums.py,v 1.3 2002/07/24 19:56:37 andy_robinson Exp $ ''' |
|
118 | 6 |
__doc__=""" |
7 |
holder for all reportlab's enumerated types |
|
8 |
""" |
|
9 |
TA_LEFT = 0 |
|
10 |
TA_CENTER = 1 |
|
11 |
TA_RIGHT = 2 |
|
1683 | 12 |
TA_JUSTIFY = 4 |