Example #1
0
 private void OnScriptOutput(string message)
 {
     if (ScriptOutput != null)
     {
         var args = new ScriptOutputEventArgs {
             Message = message
         };
         ScriptOutput(this, args);
     }
 }
Example #2
0
 private void OnScriptOutput(object sender, ScriptOutputEventArgs args)
 {
     WriteToOutputWindow(args.Text);
 }
Example #3
0
 void OnScriptOutput(object sender, ScriptOutputEventArgs e)
 {
     m_outputContent.AppendText(e.Message);
 }