Method: Tk::Canvas#moveto
- Defined in:
- lib/tk/canvas.rb
#moveto(tag, x, y) ⇒ Object Also known as: move_to
539 540 541 542 543 |
# File 'lib/tk/canvas.rb', line 539 def moveto(tag, x, y) # Tcl/Tk 8.6 or later tk_send_without_enc('moveto', tagid(tag), x, y) self end |