Set the name of the icon for this widget. Return the name if None is given.
(self, newName=None)
| 2170 | iconmask = wm_iconmask |
| 2171 | |
| 2172 | def wm_iconname(self, newName=None): |
| 2173 | """Set the name of the icon for this widget. Return the name if |
| 2174 | None is given.""" |
| 2175 | return self.tk.call('wm', 'iconname', self._w, newName) |
| 2176 | |
| 2177 | iconname = wm_iconname |
| 2178 |
no test coverage detected