Sets whether a dialog window can be resized.
Allows or prevents resizing of the dialog.
planetcnc.dlg_set_resizable(handle, resizable)
#! /usr/bin/env python import planetcnc # Set an existing dialog to be resizable dialog_handle = "MyDialogHandle" planetcnc.dlg_set_resizable(dialog_handle, True) print("Dialog is now resizable.")