(self, canvas, options)
| 713 | self.setOutline = self.setFill |
| 714 | |
| 715 | def _draw(self, canvas, options): |
| 716 | p = self.anchor |
| 717 | x,y = canvas.toScreen(p.x,p.y) |
| 718 | return canvas.create_text(x,y,options) |
| 719 | |
| 720 | def _move(self, dx, dy): |
| 721 | self.anchor.move(dx,dy) |