Sets the position of a dialog window on the screen.
Moves the dialog to the specified `(x, y)` coordinates.
planetcnc.dlg_set_pos(handle, x, y)
#! /usr/bin/env python import planetcnc # Move an existing dialog to position (100, 200) dialog_handle = "MyDialogHandle" planetcnc.dlg_set_pos(dialog_handle, 100, 200) print("Dialog moved to (100, 200).")