Create text with coordinates x1,y1.
(self, *args, **kw)
| 3091 | return self._create('rectangle', args, kw) |
| 3092 | |
| 3093 | def create_text(self, *args, **kw): |
| 3094 | """Create text with coordinates x1,y1.""" |
| 3095 | return self._create('text', args, kw) |
| 3096 | |
| 3097 | def create_window(self, *args, **kw): |
| 3098 | """Create window with coordinates x1,y1,x2,y2.""" |