Hi guys,
I am creating a Rhino instance via
dynamic rhinoInstance = null;
string id = "Rhino.Application";
System.Type t = System.Type.GetTypeFromProgID(id);
rhinoInstance = System.Activator.CreateInstance(t);
Is there anything useful that can be done after that? for example get access to the Rhino document and use some RhinoCommon?
For example, Excel lets you do the following:
using Excel = Microsoft.Office.Interop.Excel;
Excel.Application objApp;
// Instantiate Excel and start a new workbook.
objApp = new Excel.Application();
objBooks = objApp.Workbooks;
objSheets = objBook.Worksheets;
Excel.Workbooks objBooks;
Excel.Sheets objSheets;
Excel._Worksheet objSheet;
Excel.Range range;
Thanks