MCPcopy Index your code
hub / github.com/python/cpython / wm_iconname

Method wm_iconname

Lib/tkinter/__init__.py:2362–2365  ·  view source on GitHub ↗

Set the name of the icon for this widget. Return the name if None is given.

(self, newName=None)

Source from the content-addressed store, hash-verified

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

Callers 5

make_guiMethod · 0.80
settitleMethod · 0.80
create_widgetsMethod · 0.80
settitleMethod · 0.80
saved_change_hookMethod · 0.80

Calls 1

callMethod · 0.45

Tested by

no test coverage detected