Revit开发之标注创建


在Revit项目文件里创建标注可以用

  NewDimension

这个方法有两个重载,一个使用默认的标注类型,一个可以指定标注类型

在项目文件和在族文件能创建的标注种类是不一样的,读者可以自己研究研究

下面是一个标注墙的小例子:

            UIDocument uidoc = commandData.Application.ActiveUIDocument;
            Document doc = uidoc.Document;
            Wall wall = doc.GetElement(uidoc.Selection.PickObject(ObjectType.Element)) as Wall;
            if (wall != null)
            {
                ReferenceArray refArry = new ReferenceArray();
                Line wallLine =(wall.Location as LocationCurve).Curve as Line;
                XYZ wallDir = ((wall.Location as LocationCurve).Curve as Line).Direction;
                Options opt = new Options();
                opt.ComputeReferences = true;
                opt.DetailLevel = ViewDetailLevel.Fine;
                GeometryElement gelem = wall.get_Geometry(opt);
                foreach (GeometryObject gobj in gelem)
                {
                    if (gobj is Solid)
                    {
                        Solid solid = gobj as Solid;
                        foreach (Face face in solid.Faces)
                        {
                            if (face is PlanarFace)
                            {
                                XYZ faceDir =face.ComputeNormal(new UV());
                                if (faceDir.IsAlmostEqualTo(wallDir)||faceDir.IsAlmostEqualTo(-wallDir))
                                {
                                    refArry.Append(face.Reference);
                                }
                            }
                        }
                    }
                }
                Transaction trans = new Transaction(doc, "trans");
                trans.Start();
                doc.Create.NewDimension(doc.ActiveView, wallLine, refArry);
                trans.Commit();
            }
            return Result.Succeeded;





评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值