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

Method winfo_reqwidth

Lib/tkinter/__init__.py:1310–1313  ·  view source on GitHub ↗

Return requested width of this widget.

(self)

Source from the content-addressed store, hash-verified

1308 self.tk.call('winfo', 'reqheight', self._w))
1309
1310 def winfo_reqwidth(self):
1311 """Return requested width of this widget."""
1312 return self.tk.getint(
1313 self.tk.call('winfo', 'reqwidth', self._w))
1314
1315 def winfo_rgb(self, color):
1316 """Return a tuple of integer RGB values in range(65536) for color in this widget."""

Callers 1

_place_windowFunction · 0.80

Calls 2

getintMethod · 0.45
callMethod · 0.45

Tested by

no test coverage detected