How to import/export block from/to external file into open document?

Similar problem. In Rhino _Insert Haz also invokes the block manager dialog.
Via RhinoApp.RunScript(_-Insert Haz) however, it works to insert it but I am prompted in the UI for all the different options (insert as block, insertion point, rotation, scale factor).
How can I specify the options via RunScript?

RhinoApp.RunScript("_-Insert Haz _Block 0,0,0 _Enter _Enter", true)
RhinoApp.RunScript("_-Insert Haz _Block 0,0,0 0.0 1.0", true);

are not the right way.

1 Like