Return a tuple of the number of column and rows in the grid.
(self)
| 2047 | rowconfigure = grid_rowconfigure |
| 2048 | |
| 2049 | def grid_size(self): |
| 2050 | """Return a tuple of the number of column and rows in the grid.""" |
| 2051 | return self._getints( |
| 2052 | self.tk.call('grid', 'size', self._w)) or None |
| 2053 | |
| 2054 | size = grid_size |
| 2055 |