Set min WIDTH and HEIGHT for this widget. If the window is gridded the values are given in grid units. Return the current values if None is given.
(self, width=None, height=None)
| 2426 | maxsize = wm_maxsize |
| 2427 | |
| 2428 | def wm_minsize(self, width=None, height=None): |
| 2429 | """Set min WIDTH and HEIGHT for this widget. If the window is gridded |
| 2430 | the values are given in grid units. Return the current values if None |
| 2431 | is given.""" |
| 2432 | return self._getints(self.tk.call( |
| 2433 | 'wm', 'minsize', self._w, width, height)) |
| 2434 | |
| 2435 | minsize = wm_minsize |
| 2436 |