Show all components in screen

Is it possible to do the same thing as click the button below in .NET?

Hi,

Try the snippet below. With command registry handle you can call any .NET action item if you know its ID. And you can get IDs for standard VC commands by looking at the VisualComponents.Engine.exe.config file in the application folder. Or you can search all items and their IDs by iterating ICommandRegistry.Actions property.

var reg = IoC.Get<ICommandRegistry>();
reg.ExecuteAction(“FillWorld”);

-k