Return a tuple of the number of column and rows in the grid.
(self)
| 1991 | rowconfigure = grid_rowconfigure |
| 1992 | |
| 1993 | def grid_size(self): |
| 1994 | """Return a tuple of the number of column and rows in the grid.""" |
| 1995 | return self._getints( |
| 1996 | self.tk.call('grid', 'size', self._w)) or None |
| 1997 | |
| 1998 | size = grid_size |
| 1999 |