Hidden Test command

I’m working on a command for a plugin that I don’t want to be visible to all users so I’m wondering if there’s a way to add a hidden command similar to Rhino’s test commands. How do I go about doing that in c#?

Add the following attribute to your command class
[CommandStyle(Style.Hidden)]

2 Likes