ACAT.Extensions.Default.UI.Dialogs.ACATTryoutForm.OnRunCommand C# (CSharp) 메소드

OnRunCommand() 공개 메소드

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