Set the position of the icon of this widget to X and Y. Return a tuple of the current values of X and X if None is given.
(self, x=None, y=None)
| 2318 | iconphoto = wm_iconphoto |
| 2319 | |
| 2320 | def wm_iconposition(self, x=None, y=None): |
| 2321 | """Set the position of the icon of this widget to X and Y. Return |
| 2322 | a tuple of the current values of X and X if None is given.""" |
| 2323 | return self._getints(self.tk.call( |
| 2324 | 'wm', 'iconposition', self._w, x, y)) |
| 2325 | |
| 2326 | iconposition = wm_iconposition |
| 2327 |