How to select the active toolbar

Is there a way with the .net API to get and set which toolbar, e.g. MODELING or PROGRAM, is active in the visual components UI?

Those are called application contexts. Something like this:

var context = IoC.Get<IApplicationContext>();
context.SetContext(Contexts.Configure);
1 Like

Thank you, the example code worked!