summaryrefslogtreecommitdiff
path: root/Lib/tkinter/__init__.py
diff options
context:
space:
mode:
Diffstat (limited to 'Lib/tkinter/__init__.py')
-rw-r--r--Lib/tkinter/__init__.py9
1 files changed, 9 insertions, 0 deletions
diff --git a/Lib/tkinter/__init__.py b/Lib/tkinter/__init__.py
index fa015ff12e..1dc4118845 100644
--- a/Lib/tkinter/__init__.py
+++ b/Lib/tkinter/__init__.py
@@ -2914,6 +2914,15 @@ class Canvas(Widget, XView, YView):
"""Move an item TAGORID given in ARGS."""
self.tk.call((self._w, 'move') + args)
+ def moveto(self, tagOrId, x='', y=''):
+ """Move the items given by TAGORID in the canvas coordinate
+ space so that the first coordinate pair of the bottommost
+ item with tag TAGORID is located at position (X,Y).
+ X and Y may be the empty string, in which case the
+ corresponding coordinate will be unchanged. All items matching
+ TAGORID remain in the same positions relative to each other."""
+ self.tk.call(self._w, 'moveto', tagOrId, x, y)
+
def postscript(self, cnf={}, **kw):
"""Print the contents of the canvas to a postscript
file. Valid options: colormap, colormode, file, fontmap,