Return the position of the text as a tuple (*x*, *y*)
(self)
| 855 | return x, y |
| 856 | |
| 857 | def get_position(self): |
| 858 | "Return the position of the text as a tuple (*x*, *y*)" |
| 859 | # This should return the same data (possible unitized) as was |
| 860 | # specified with 'set_x' and 'set_y'. |
| 861 | return self._x, self._y |
| 862 | |
| 863 | def get_prop_tup(self, renderer=None): |
| 864 | """ |
no outgoing calls