示例#1
0
 public void beginCommand(object a, CommandEventArgs e)
 {
     //RhinoApp.WriteLine("In begin command. ");
 }
示例#2
0
 public void endCommand(object a, CommandEventArgs e)
 {
     //RhinoApp.WriteLine("In end command. ");
 }
示例#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);
     }
   }
 }