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

Method grid_rowconfigure

Lib/tkinter/__init__.py:2039–2045  ·  view source on GitHub ↗

Configure row INDEX of a grid. Valid options are minsize (minimum size of the row), weight (how much does additional space propagate to this row) and pad (how much space to let additionally).

(self, index, cnf={}, **kw)

Source from the content-addressed store, hash-verified

2037 self.tk.call('grid', 'propagate', self._w, flag)
2038
2039 def grid_rowconfigure(self, index, cnf={}, **kw):
2040 """Configure row INDEX of a grid.
2041
2042 Valid options are minsize (minimum size of the row),
2043 weight (how much does additional space propagate to this row)
2044 and pad (how much space to let additionally)."""
2045 return self._grid_configure('rowconfigure', index, cnf, kw)
2046
2047 rowconfigure = grid_rowconfigure
2048

Callers 10

tearDownMethod · 0.80
__init__Method · 0.80
create_widgetsMethod · 0.80
__init__Method · 0.80
__init__Method · 0.80

Calls 1

_grid_configureMethod · 0.95