The only way to toggle the drag mode is with the following:
-_Options O B S EnterEnd
It’s a little clunky and ignores NoEcho. There’s already a command for everything but the drag mode: _Gumball toggle, _GumballAlignment, _GumballRelocate, _GumballScaleMode, _GumballReset, and _GumballAutoReset.
Hi @EricM, you might use below python snippet to toggle:
import Rhino
def ToggleSnappyGumball():
state = Rhino.ApplicationSettings.ModelAidSettings.SnappyGumballEnabled
Rhino.ApplicationSettings.ModelAidSettings.SnappyGumballEnabled = not state
print "SnappyGumball={}".format("Yes" if not state else "No")
ToggleSnappyGumball()