代码获取cad版本
时间: 2023-10-13 17:04:17 浏览: 180
获取版本号
获取 CAD 版本的代码取决于你使用的编程语言和 CAD 软件版本。以下是在 AutoCAD 中使用 .NET API 获取版本信息的示例代码:
```csharp
using Autodesk.AutoCAD.Runtime;
using Autodesk.AutoCAD.ApplicationServices;
[assembly: CommandClass(typeof(GetCADVersion.CADVersionCommands))]
namespace GetCADVersion
{
public class CADVersionCommands
{
[CommandMethod("GETCADVERSION")]
public void GetCADVersion()
{
Document doc = Application.DocumentManager.MdiActiveDocument;
Editor editor = doc.Editor;
editor.WriteMessage("CAD version: " + Application.Version.ToString());
}
}
}
```
在上面的代码中,我们使用 `Application.Version` 属性获取当前 AutoCAD 的版本信息,并在命令行窗口中输出该信息。你可以将此代码保存为 .NET 程序集,并在 AutoCAD 中加载运行该命令。
如果你使用的是其他 CAD 软件,可以查阅相应的 API 文档或开发者手册,以获取版本信息的代码示例。
阅读全文