public void OnError(Exception exception)
 {
     Value = ExcelIntegration.HandleUnhandledException(exception);
     // Set the topic value to #VALUE (not used!?) - converted to COM code in Topic
     _topic.UpdateValue(ExcelError.ExcelErrorValue);
     OnCompleted();
 }
예제 #2
0
 public void OnError(Exception exception)
 {
     // TODO: Is the sequence here important?
     Value = ExcelIntegration.HandleUnhandledException(exception);
     // Set the topic value to #VALUE (not used!?) - converted to COM code in Topic
     _topic.UpdateValue(ExcelError.ExcelErrorValue);
     IsCompleted = true;
 }
예제 #3
0
 public void OnError(Exception exception)
 {
     Value = ExcelIntegration.HandleUnhandledException(exception);
     OnCompleted();
 }