Revit二次开发-ironpython调用dll
IronPython
-
import clr clr.AddReferenceByPartialName("System.Windows.Forms") clr.AddReferenceByPartialName("System.Drawing") from System.Windows.Forms import * from System.Drawing import * clr.AddReferenceToFile("IronPython_TestDll.dll") from IronPython_TestDll import *
在clr添加引用,加载文件
- clr.AddReferenceToFile("FileName.dll") -- 加载DLL文件
- from FileName import * -- 导入命名空间