Return a tuple of column and row which identify the cell at which the pixel at position X and Y inside the master widget is located.
(self, x, y)
| 1859 | columnconfigure = grid_columnconfigure |
| 1860 | |
| 1861 | def grid_location(self, x, y): |
| 1862 | """Return a tuple of column and row which identify the cell |
| 1863 | at which the pixel at position X and Y inside the master |
| 1864 | widget is located.""" |
| 1865 | return self._getints( |
| 1866 | self.tk.call( |
| 1867 | 'grid', 'location', self._w, x, y)) or None |
| 1868 | |
| 1869 | def grid_propagate(self, flag=_noarg_): |
| 1870 | """Set or get the status for propagation of geometry information. |