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

Method itemcget

Lib/tkinter/__init__.py:3176–3179  ·  view source on GitHub ↗

Return the value of OPTION for item TAGORID.

(self, tagOrId, option)

Source from the content-addressed store, hash-verified

3174 self.tk.call((self._w, 'insert') + args)
3175
3176 def itemcget(self, tagOrId, option):
3177 """Return the value of OPTION for item TAGORID."""
3178 return self.tk.call(
3179 (self._w, 'itemcget') + (tagOrId, '-'+option))
3180
3181 def itemconfigure(self, tagOrId, cnf=None, **kw):
3182 """Query or modify the configuration options of an item TAGORID.

Callers 9

_test_option_smoothMethod · 0.45
test_create_lineMethod · 0.45
test_create_polygonMethod · 0.45
test_itemconfigureMethod · 0.45
check_itemconfigureMethod · 0.45
get_sidebar_linesMethod · 0.45
get_sidebar_fontMethod · 0.45
get_sidebar_colorsMethod · 0.45

Calls 1

callMethod · 0.45

Tested by 9

_test_option_smoothMethod · 0.36
test_create_lineMethod · 0.36
test_create_polygonMethod · 0.36
test_itemconfigureMethod · 0.36
check_itemconfigureMethod · 0.36
get_sidebar_linesMethod · 0.36
get_sidebar_fontMethod · 0.36
get_sidebar_colorsMethod · 0.36