Set the name of the icon for this widget. Return the name if None is given.
(self, newName=None)
| 2360 | iconmask = wm_iconmask |
| 2361 | |
| 2362 | def wm_iconname(self, newName=None): |
| 2363 | """Set the name of the icon for this widget. Return the name if |
| 2364 | None is given.""" |
| 2365 | return self.tk.call('wm', 'iconname', self._w, newName) |
| 2366 | |
| 2367 | iconname = wm_iconname |
| 2368 |
no test coverage detected