Return true if this widget is mapped.
(self)
| 1258 | return self.tk.splitlist(self.tk.call(args)) |
| 1259 | |
| 1260 | def winfo_ismapped(self): |
| 1261 | """Return true if this widget is mapped.""" |
| 1262 | return self.tk.getint( |
| 1263 | self.tk.call('winfo', 'ismapped', self._w)) |
| 1264 | |
| 1265 | def winfo_manager(self): |
| 1266 | """Return the window manager name for this widget.""" |
no test coverage detected