明经CAD社区

 找回密码
 注册

QQ登录

只需一步,快速开始

搜索
查看: 1862|回复: 2

c#中如何插入多行文本?谢谢

[复制链接]
发表于 2008-3-14 16:12:00 | 显示全部楼层 |阅读模式
我想实现cad多行文本的功能,指定多行文本顶端和末端的位置,然后设置字体大小,对齐方式.然后输入要显示的字,高手们这个能指点一下,吗?帮点小忙吧,小弟在次谢过了!
发表于 2008-3-16 16:12:00 | 显示全部楼层
C++的话,AcDbMText,至于C#找一下SDK对应的类,new出来,设置一下参数,加入数据库就行了,应该不难。
 楼主| 发表于 2008-3-18 09:57:00 | 显示全部楼层

谢谢我知道了

Database db = Application.DocumentManager.MdiActiveDocument.Database;
DBTransMan tm = db.TransactionManager;

MText txt = new MText();
txt.Contents = "123\r\n456\r\n测试";
using(Transaction ta = tm.StartTransaction())
{
        BlockTable bt = (BlockTable)tm.GetObject(db.BlockTableId, OpenMode.ForRead);
        ObjectId objid;
        Editor ed = Application.DocumentManager.MdiActiveDocument.Editor;
        if (bt.Has("A010001"))
        {
                objid = bt["A010001"];
                BlockTableRecord btr = (BlockTableRecord)tm.GetObject(objid, OpenMode.ForWrite);
                btr.AppendEntity(txt);
                tm.AddNewlyCreatedDBObject(txt, true);
                ed.WriteMessage(btr.Name + " --- Renaud");

                ta.Commit();
        }
        else
        {
                ed.WriteMessage("Not Has --- Renaud");
        }
}

您需要登录后才可以回帖 登录 | 注册

本版积分规则

小黑屋|手机版|CAD论坛|CAD教程|CAD下载|联系我们|关于明经|明经通道 ( 粤ICP备05003914号 )  
©2000-2023 明经通道 版权所有 本站代码,在未取得本站及作者授权的情况下,不得用于商业用途

GMT+8, 2024-11-25 16:33 , Processed in 0.166851 second(s), 23 queries , Gzip On.

Powered by Discuz! X3.4

Copyright © 2001-2021, Tencent Cloud.

快速回复 返回顶部 返回列表