Create window with coordinates x1,y1,x2,y2.
(self, *args, **kw)
| 3095 | return self._create('text', args, kw) |
| 3096 | |
| 3097 | def create_window(self, *args, **kw): |
| 3098 | """Create window with coordinates x1,y1,x2,y2.""" |
| 3099 | return self._create('window', args, kw) |
| 3100 | |
| 3101 | def dchars(self, *args): |
| 3102 | """Delete characters of text items identified by tag or id in ARGS (possibly |