MCPcopy Index your code
hub / github.com/RustPython/RustPython / wm_iconposition

Method wm_iconposition

Lib/tkinter/__init__.py:2320–2324  ·  view source on GitHub ↗

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)

Source from the content-addressed store, hash-verified

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

Callers

nothing calls this directly

Calls 2

_getintsMethod · 0.80
callMethod · 0.45

Tested by

no test coverage detected