明经CAD社区

 找回密码
 注册

QQ登录

只需一步,快速开始

搜索
查看: 2394|回复: 1

.net 添加注记(一)

[复制链接]
发表于 2012-3-3 16:57:49 | 显示全部楼层 |阅读模式
        [CommandMethod("DrawAnno")]
        public void DrawAnno()
        {
            Document acDoc = Application.DocumentManager.MdiActiveDocument;
            Database db = HostApplicationServices.WorkingDatabase;
            Editor ed = acDoc.Editor;
            Point3d jigPt = Point3d.Origin;
            PromptStringOptions pStrOpts = new PromptStringOptions("\n输入文字: ");
            pStrOpts.AllowSpaces = true;
            PromptResult pStrRes = acDoc.Editor.GetString(pStrOpts);
            // 创建文字对象
            DBText mText = new DBText();
            // 文字对象的ID
            ObjectId textId = new ObjectId();
            mText.SetDatabaseDefaults();
            mText.TextString = pStrRes.StringResult;
            // 获取文字插入点
            PromptPointOptions optPtKey = new PromptPointOptions("\n请输入点: ");
            optPtKey.UseBasePoint = false;
            PromptPointResult resKey = ed.GetPoint(optPtKey);
            if(resKey.Status == PromptStatus.OK)
            {
                jigPt = resKey.Value;
                // 获取文字旋转角度
                PromptAngleOptions optAngle = new PromptAngleOptions("\n请指定文字旋转角度: ");
                optAngle.UseBasePoint = true;
                optAngle.BasePoint = jigPt;
                PromptDoubleResult resAngle = ed.GetAngle(optAngle);
                if (resAngle.Status == PromptStatus.OK)
                {
                    mText.Justify = AttachmentPoint.MiddleCenter;
                    mText.AlignmentPoint = resKey.Value;
                    mText.Rotation = resAngle.Value;
                    Entity textEnt = (Entity)mText;
                    textId = myMethod.AppendEntity(textEnt);
                }
            }
        }


该贴已经同步到 菜鸟Liu的微博
发表于 2012-3-30 16:27:17 | 显示全部楼层
学习一下
多谢分享
您需要登录后才可以回帖 登录 | 注册

本版积分规则

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

GMT+8, 2024-11-25 18:42 , Processed in 0.157385 second(s), 24 queries , Gzip On.

Powered by Discuz! X3.4

Copyright © 2001-2021, Tencent Cloud.

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