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)
| 2350 | maxsize = wm_maxsize |
| 2351 | |
| 2352 | def wm_minsize(self, width=None, height=None): |
| 2353 | """Set min WIDTH and HEIGHT for this widget. If the window is gridded |
| 2354 | the values are given in grid units. Return the current values if None |
| 2355 | is given.""" |
| 2356 | return self._getints(self.tk.call( |
| 2357 | 'wm', 'minsize', self._w, width, height)) |
| 2358 | |
| 2359 | minsize = wm_minsize |
| 2360 |