Esempio n. 1
0
 public void beginCommand(object a, CommandEventArgs e)
 {
     //RhinoApp.WriteLine("In begin command. ");
 }
Esempio n. 2
0
 public void endCommand(object a, CommandEventArgs e)
 {
     //RhinoApp.WriteLine("In end command. ");
 }
Esempio n. 3
0
 private static void OnEndCommand(IntPtr pCommand, int rc)
 {
   if (m_end_command != null)
   {
     try
     {
       CommandEventArgs e = new CommandEventArgs(pCommand, rc);
       m_end_command(null, e);
       e.m_pCommand = IntPtr.Zero;
     }
     catch (Exception ex)
     {
       Runtime.HostUtils.ExceptionReport(ex);
     }
   }
 }