TF_ALIGN_LEFT = 1
--!< The point specified is on the left-hand-side of the text
TF_ALIGN_X_CENTRE = 2
--!< The point specified is at the horizontal centre of the text
TF_ALIGN_RIGHT = 4
--!< The point specified is on the right-hand-side of the text
TF_ALIGN_TOP = 8
--!< The point is at the top of the text
TF_ALIGN_Y_CENTRE = 16
--!< The point is at the vertical centre of the text
TF_ALIGN_BASELINE = 32
--!< The point is on the baseline of the text
TF_ALIGN_BOTTOM = 64
--!< The point is on the bottom of the text
TF_DROP_SHADOW = 128
--!< black 3d shadow effect behind text.
TF_FIX_POSITION = 256
--!< fixes somewhat entrenched bug in text positioning.
TF_OUTLINE = 512
--!< black outline behind text if supported by font
TF_WORD_WRAP = 1024
--!< draws relative to predefined screen rectangle & does word-wrapping
TF_ALIGN_XY_CENTRE = TF_ALIGN_X_CENTRE + TF_ALIGN_Y_CENTRE
--!< Centred in both X and Y.