1 回答
TA贡献1852条经验 获得超7个赞
您是否尝试从 Excel 中运行代码,并尝试让 Excel 打开 AutoCAD 来操作绘图?我认为这行不通。您可以采用另一种方式,打开 AutoCAD,加载插件,然后通过 API 将 AutoCAD 中的信息提供给 Excel。AutoCAD API 需要运行 AutoCAD(或 ACCORECONSOLE,这是 AutoCAD 的命令行版本,但这需要一些额外的管道)才能对图形文件执行任何操作。如果是 AutoCAD,而不是 ACCORECONSOLE,则通常需要至少打开一张图形(..DocumentManager.MdiActiveDocument)。然后,您可以使用文档管理器打开其他文档(假设您有权限这样做)。
/// <summary>
/// Look through the Application's Document manager for a Document object with the given name. If found return it,
/// else open the drawing/Document and return it.
/// </summary>
/// <param name="name">The name to look for in the collection</param>
/// <returns>An AutoCAD Document object.</returns>
public static ACADApp.Document GetDocumentByName(string name)
{
try
{
foreach (ACADApp.Document doc in ACADApp.Application.DocumentManager)
{
if (doc.Database.Filename.ToUpper() == name.ToUpper() || doc.Name.ToUpper() == name.ToUpper())
{
return doc;
}
}
return ACADApp.Application.DocumentManager.Open(name);
}
catch (System.Exception ex)
{
TBExceptionManager.HandleException(name, ex);
return null;
}
}
- 1 回答
- 0 关注
- 123 浏览
添加回答
举报