Create text with coordinates x1,y1.
(self, *args, **kw)
| 2879 | return self._create('rectangle', args, kw) |
| 2880 | |
| 2881 | def create_text(self, *args, **kw): |
| 2882 | """Create text with coordinates x1,y1.""" |
| 2883 | return self._create('text', args, kw) |
| 2884 | |
| 2885 | def create_window(self, *args, **kw): |
| 2886 | """Create window with coordinates x1,y1,x2,y2.""" |
no test coverage detected