Ai
86 Star 326 Fork 253

InspireFunction/IFoxCAD

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
TestFileDatabase.cs 933 Bytes
一键复制 编辑 原始数据 按行查看 历史
vicwjb 提交于 2024-11-25 13:02 +08:00 . 改文件组织形式,添加大量测试函数
namespace Test;
/**************************************************************
*作者:Leon
*创建时间:2022/2/11 9:55:32
**************************************************************/
public class TestFileDatabase
{
[CommandMethod(nameof(Test_FileDatabaseInit))]
public void Test_FileDatabaseInit()
{
try
{
var fileName = @"C:\Users\Administrator\Desktop\合并详图测试BUG.dwg";
using DBTrans trans = new(fileName);
trans.ModelSpace.AddEntity(new Line(new(0, 0, 0), new(1000, 1000, 0)));
if (trans.Document is not null && trans.Document.IsActive)
trans.Document.SendStringToExecute("_qsave\n", false, true, true);
else
trans.Database.SaveAs(fileName, (DwgVersion)27);
}
catch (System.Exception e)
{
System.Windows.MessageBox.Show(e.Message);
}
}
}
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
C#
1
https://gitee.com/inspirefunction/ifoxcad.git
git@gitee.com:inspirefunction/ifoxcad.git
inspirefunction
ifoxcad
IFoxCAD
v0.9

搜索帮助