There is any command similar to:
Rhino.ApplicationSettings.AppearanceSettings.MenuVisible = false;
for hide the StatusBar??
Thanks
There is any command similar to:
Rhino.ApplicationSettings.AppearanceSettings.MenuVisible = false;
for hide the StatusBar??
Thanks
Hi @MatrixRatrix, apart from scripting the _Options
command, try below:
import Rhino
def ToggleStatusbar():
rhino_id = Rhino.RhinoApp.CurrentRhinoId
settings = Rhino.PlugIns.PlugIn.GetPluginSettings(rhino_id, False)
ps = settings.GetChild("Options").GetChild("Appearance")
ps.SetBool("ShowStatusbar", not ps.GetBool("ShowStatusbar"))
ToggleStatusbar()
_
c.