Ai
86 Star 326 Fork 253

InspireFunction/IFoxCAD

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
TestText.cs 1.48 KB
一键复制 编辑 原始数据 按行查看 历史
vicwjb 提交于 2024-11-25 13:02 +08:00 . 改文件组织形式,添加大量测试函数

namespace TestShared;
public class TestText
{
[CommandMethod(nameof(TestDBText))]
public void TestDBText()
{
using var tr = new DBTrans();
tr.CurrentSpace.AddEntity(DBTextEx.CreateDBText(new(-1, -1, 0), "123", 2.5, action:t=> t.ColorIndex = 1));
tr.CurrentSpace.AddEntity(DBTextEx.CreateDBText(new(-1, -1, 0), "123", 2.5, action: t => {
t.Justify = AttachmentPoint.BaseCenter;
t.AlignmentPoint = new(1, 1, 0);
t.ColorIndex = 2;
}));
}
[CommandMethod(nameof(TestBackDBText))]
public void TestBackDBText()
{
using var tr = new DBTrans(@"C:\Users\vic\Desktop\test.dwg");
tr.CurrentSpace.AddEntity(DBTextEx.CreateDBText(new(-1, -1, 0), "123", 2.5, action: t => t.ColorIndex = 1));
tr.CurrentSpace.AddEntity(DBTextEx.CreateDBText(new(-1, -1, 0), "123", 2.5, action: t =>
{
t.Justify = AttachmentPoint.BaseCenter;
t.AlignmentPoint = new(1, 1, 0);
t.ColorIndex = 2;
}));
tr.Database.SaveDwgFile();
}
[CommandMethod(nameof(TestMText))]
public void TestMText()
{
using var tr = new DBTrans();
tr.CurrentSpace.AddEntity(MTextEx.CreateMText(new(5, 5, 0), "123", 2.5, action: t => t.ColorIndex = 1));
tr.CurrentSpace.AddEntity(MTextEx.CreateMText(new(5, 5, 0), "123", 2.5, action: t => {
t.Attachment = AttachmentPoint.TopCenter;
t.ColorIndex = 2;
}));
}
}
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
C#
1
https://gitee.com/inspirefunction/ifoxcad.git
git@gitee.com:inspirefunction/ifoxcad.git
inspirefunction
ifoxcad
IFoxCAD
v0.9

搜索帮助