MCPcopy Index your code
hub / github.com/RustPython/RustPython / winfo_width

Method winfo_width

Lib/tkinter/__init__.py:1448–1451  ·  view source on GitHub ↗

Return the width of this widget.

(self)

Source from the content-addressed store, hash-verified

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

Callers 1

_place_windowFunction · 0.80

Calls 2

getintMethod · 0.45
callMethod · 0.45

Tested by

no test coverage detected