MCPcopy Index your code
hub / github.com/PySimpleGUI/PySimpleGUI / bring_figure_to_front

Method bring_figure_to_front

PySimpleGUI/PySimpleGUI.py:6721–6728  ·  view source on GitHub ↗

Changes Z-order of figures on the Graph. Brings the indicated figure to the front of all other drawn figures :param figure: value returned by tkinter when creating the figure / drawing :type figure: (int)

(self, figure)

Source from the content-addressed store, hash-verified

6719 self.TKCanvas.tag_lower(figure) # move figure to the "bottom" of all other figure
6720
6721 def bring_figure_to_front(self, figure):
6722 """
6723 Changes Z-order of figures on the Graph. Brings the indicated figure to the front of all other drawn figures
6724
6725 :param figure: value returned by tkinter when creating the figure / drawing
6726 :type figure: (int)
6727 """
6728 self.TKCanvas.tag_raise(figure) # move figure to the "top" of all other figures
6729
6730 def get_figures_at_location(self, location):
6731 """

Callers 2

mainFunction · 0.80
mainFunction · 0.80

Calls

no outgoing calls

Tested by

no test coverage detected