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)
| 2204 | iconphoto = wm_iconphoto |
| 2205 | |
| 2206 | def wm_iconposition(self, x=None, y=None): |
| 2207 | """Set the position of the icon of this widget to X and Y. Return |
| 2208 | a tuple of the current values of X and X if None is given.""" |
| 2209 | return self._getints(self.tk.call( |
| 2210 | 'wm', 'iconposition', self._w, x, y)) |
| 2211 | |
| 2212 | iconposition = wm_iconposition |
| 2213 |