MCPcopy Create free account
hub / github.com/RT-Thread/env-windows / winfo_exists

Method winfo_exists

tools/python-3.11.9-amd64/Lib/tkinter/__init__.py:1136–1139  ·  view source on GitHub ↗

Return true if this widget exists.

(self)

Source from the content-addressed store, hash-verified

1134 return self.tk.getint(self.tk.call('winfo', 'depth', self._w))
1135
1136 def winfo_exists(self):
1137 """Return true if this widget exists."""
1138 return self.tk.getint(
1139 self.tk.call('winfo', 'exists', self._w))
1140
1141 def winfo_fpixels(self, number):
1142 """Return the number of pixels for the given distance NUMBER

Callers 1

test_mainloopMethod · 0.80

Calls 2

callMethod · 0.80
getintMethod · 0.45

Tested by 1

test_mainloopMethod · 0.64