Change coords of a canvas.line item

Fredrik Lundh fredrik at pythonware.com
Fri Jan 5 07:30:08 EST 2007


Matthias Vodel wrote:

> I want to change the beginning/end-coordinates of a canvas.line item.
>
> Something like:
>
> self.myCanvas.itemconfigure(item_id, coords=(x1_new, y1_new, x2_new, y2_new))

    self.myCanvas.coords(item_id, x1_new, y1_new, x2_new, y2_new)

</F> 






More information about the Python-list mailing list