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

Method entryconfigure

Lib/tkinter/__init__.py:3652–3658  ·  view source on GitHub ↗

Query or modify the configuration options of a menu item at INDEX. Similar to configure() except that it applies to the specified menu item.

(self, index, cnf=None, **kw)

Source from the content-addressed store, hash-verified

3650 return self.tk.call(self._w, 'entrycget', index, '-' + option)
3651
3652 def entryconfigure(self, index, cnf=None, **kw):
3653 """Query or modify the configuration options of a menu item at INDEX.
3654
3655 Similar to configure() except that it applies to the specified
3656 menu item.
3657 """
3658 return self._configure(('entryconfigure', index), cnf, kw)
3659
3660 entryconfig = entryconfigure
3661

Callers 5

test_entryconfigureMethod · 0.80
test_menuMethod · 0.80
right_menu_eventMethod · 0.80

Calls 1

_configureMethod · 0.45

Tested by 4

test_entryconfigureMethod · 0.64
test_menuMethod · 0.64