Return the horizontal alignment as a string. Will be one of 'left', 'center' or 'right'.
(self)
| 999 | return self._fontproperties.get_stretch() |
| 1000 | |
| 1001 | def get_horizontalalignment(self): |
| 1002 | """ |
| 1003 | Return the horizontal alignment as a string. Will be one of |
| 1004 | 'left', 'center' or 'right'. |
| 1005 | """ |
| 1006 | return self._horizontalalignment |
| 1007 | |
| 1008 | def get_unitless_position(self): |
| 1009 | """Return the (x, y) unitless position of the text.""" |
no outgoing calls