MCPcopy Create free account
hub / github.com/RT-Thread/env-windows / grid_info

Method grid_info

tools/python-3.11.9-amd64/Lib/tkinter/__init__.py:2586–2592  ·  view source on GitHub ↗

Return information about the options for positioning this widget in a grid.

(self)

Source from the content-addressed store, hash-verified

2584 self.tk.call('grid', 'remove', self._w)
2585
2586 def grid_info(self):
2587 """Return information about the options
2588 for positioning this widget in a grid."""
2589 d = _splitdict(self.tk, self.tk.call('grid', 'info', self._w))
2590 if 'in' in d:
2591 d['in'] = self.nametowidget(d['in'])
2592 return d
2593
2594 info = grid_info
2595 location = grid_location = Misc.grid_location

Calls 3

_splitdictFunction · 0.85
callMethod · 0.80
nametowidgetMethod · 0.80