ACAT.Extensions.Default.UI.Dialogs.ACATTryoutForm.OnRunCommand C# (CSharp) Method

OnRunCommand() public method

Runs the specified command
public OnRunCommand ( string command, bool &handled ) : void
command string command to execute
handled bool was it handled?
return void
        public void OnRunCommand(string command, ref bool handled)
        {
            switch (command)
            {
                default:
                    handled = false;
                    break;
            }
        }