MCPcopy Index your code
hub / github.com/python/cpython / winfo_reqwidth

Method winfo_reqwidth

Lib/tkinter/__init__.py:1328–1331  ·  view source on GitHub ↗

Return requested width of this widget.

(self)

Source from the content-addressed store, hash-verified

1326 self.tk.call('winfo', 'reqheight', self._w))
1327
1328 def winfo_reqwidth(self):
1329 """Return requested width of this widget."""
1330 return self.tk.getint(
1331 self.tk.call('winfo', 'reqwidth', self._w))
1332
1333 def winfo_rgb(self, color):
1334 """Return a tuple of integer RGB values in range(65536) for color in this widget."""

Callers 13

_place_windowFunction · 0.80
test_pack_propagateMethod · 0.80
load_dictMethod · 0.80
_configure_interiorMethod · 0.80
_configure_canvasMethod · 0.80
__init__Method · 0.80

Calls 2

getintMethod · 0.45
callMethod · 0.45