I've gone through the Documentation and intellisense, but I can't see any way via the Application object, to actually close/dispose MindManager. As a result, the application stays open even once my application has been closed.
This is my initialisation code;
This is my initialisation code;
ApplicationClass app = new ApplicationClass();
IDocument document = app.Documents.Add();
document.Activate();
// Do work
document.SaveAs("somepathhere");
document.Close();
Any help would be great.