Searched refs:paneconfigure (Results 1 - 3 of 3) sorted by relevance
/third_party/python/Lib/tkinter/test/test_tkinter/ |
H A D | test_widgets.py | 1286 self.assertRaises(TypeError, p.paneconfigure) 1287 d = p.paneconfigure(b) 1291 self.assertEqual(v, p.paneconfigure(b, k)) 1297 p.paneconfigure(b, **{name: value}) 1298 self.assertEqual(p.paneconfigure(b, name)[4], expected) 1303 p.paneconfigure(b, **{name: 'badValue'})
|
/third_party/python/Lib/tkinter/ |
H A D | __init__.py | 4452 are the ones accepted by the paneconfigure method. 4531 Option may be any value allowed by the paneconfigure subcommand 4536 def paneconfigure(self, tagOrId, cnf=None, **kw): member in PanedWindow 4605 return self._getconfigure(self._w, 'paneconfigure', tagOrId) 4608 self._w, 'paneconfigure', tagOrId, '-'+cnf) 4609 self.tk.call((self._w, 'paneconfigure', tagOrId) + 4612 paneconfig = paneconfigure
|
H A D | tix.py | 1222 # add delete forget panecget paneconfigure panes setsize 1240 def paneconfigure(self, entry, cnf={}, **kw): member in PanedWindow 1242 return self._getconfigure(self._w, 'paneconfigure', entry) 1243 self.tk.call(self._w, 'paneconfigure', entry, *self._options(cnf, kw))
|
Completed in 12 milliseconds