Create window with coordinates x1,y1,x2,y2.
(self, *args, **kw)
| 3012 | return self._create('text', args, kw) |
| 3013 | |
| 3014 | def create_window(self, *args, **kw): |
| 3015 | """Create window with coordinates x1,y1,x2,y2.""" |
| 3016 | return self._create('window', args, kw) |
| 3017 | |
| 3018 | def dchars(self, *args): |
| 3019 | """Delete characters of text items identified by tag or id in ARGS (possibly |