Return the width of this widget.
(self)
| 1351 | self.tk.call('winfo', 'vrooty', self._w)) |
| 1352 | |
| 1353 | def winfo_width(self): |
| 1354 | """Return the width of this widget.""" |
| 1355 | return self.tk.getint( |
| 1356 | self.tk.call('winfo', 'width', self._w)) |
| 1357 | |
| 1358 | def winfo_x(self): |
| 1359 | """Return the x coordinate of the upper left corner of this widget |