Sets the name (title) of a dialog window.
planetcnc.dlg_set_name(handle, name)
#! /usr/bin/env python import planetcnc # Set a new name for an existing dialog dialog_handle = "MyDialogHandle" planetcnc.dlg_set_name(dialog_handle, "New Dialog Title") print("Dialog name updated.")