Return the width of this widget.
(self)
| 1446 | self.tk.call('winfo', 'vrooty', self._w)) |
| 1447 | |
| 1448 | def winfo_width(self): |
| 1449 | """Return the width of this widget.""" |
| 1450 | return self.tk.getint( |
| 1451 | self.tk.call('winfo', 'width', self._w)) |
| 1452 | |
| 1453 | def winfo_x(self): |
| 1454 | """Return the x coordinate of the upper left corner of this widget |
no test coverage detected