How to hide the title of view ? (C++/Rhino5)

I want to hide the title of view.
Can I do it ?

If i’m not mistaken via Rhinocommon this is set is:

Rhino.Display.RhinoView.TitleVisible

HTH
-Willem

If you want to turn off the the title for a single view, you can do something like this:

CRhinoView* view = RhinoApp().ActiveView();
if (0 != view)
  view->ShowTitle(FALSE);

If you want to configure Rhino to not show view titles, you can do this:

CRhinoAppAppearanceSettings settings = RhinoApp().AppSettings().AppearanceSettings();
settings.m_show_viewport_title = FALSE;
RhinoApp().AppSettings().SetAppearanceSettings(settings);

Thank you. :smile: