BlueSky.SyntaxEditorWindow.ExecuteBSkyCommand C# (CSharp) Метод

ExecuteBSkyCommand() приватный Метод

private ExecuteBSkyCommand ( string stmt ) : void
stmt string
Результат void
        private void ExecuteBSkyCommand(string stmt)
        {
            CommandRequest cmd = new CommandRequest();
            if (IsAnalyticsCommand(stmt))
            {
                ResetSink();
                cmd.CommandSyntax = stmt;// command 
                object o = analytics.ExecuteR(cmd, false, false);//executing syntax editor commands
                SetSink();
            }
        }
SyntaxEditorWindow