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)
| 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 |