明经CAD社区

 找回密码
 注册

QQ登录

只需一步,快速开始

搜索
查看: 1529|回复: 5

C# arx 如何获取CAD文件中图层的名称

[复制链接]
发表于 2012-8-8 14:35:13 | 显示全部楼层 |阅读模式
C# arx 如何获取CAD文件中图层的名称,请大家帮帮忙
发表于 2012-8-8 17:02:17 | 显示全部楼层
遍历LayerTable
 楼主| 发表于 2012-8-8 20:34:56 | 显示全部楼层
雪山飞狐_lzh 发表于 2012-8-8 17:02
遍历LayerTable

这个想到了,但是在layerTbale中没有发现 有layerName的接口呢? 版主能详细说一下吗? 本人新手
发表于 2012-8-13 14:27:19 | 显示全部楼层
using (Transaction acTrans = acCurDb.TransactionManager.StartTransaction())
                {
                    LayerTable acLyrTbl;
                    acLyrTbl = acTrans.GetObject(acCurDb.LayerTableId,
                                               OpenMode.ForRead) as LayerTable;

                    foreach (ObjectId acObjId in acLyrTbl)
                    {
                        LayerTableRecord acLyrTblRec;
                        acLyrTblRec = acTrans.GetObject(acObjId,
                                                        OpenMode.ForRead) as LayerTableRecord;
                        string layName = acLyrTblRec.Name;
                        layNameArr.Add(layName);
                    }
                    acTrans.Commit();
                }
发表于 2012-8-13 22:42:37 | 显示全部楼层
在2006操作图层时,经常提示出错,逐行调试,发现出错的是
acLyrTblRec = acTrans.GetObject(acObjId, OpenMode.ForRead) as LayerTableRecord;
搞不清楚是什么状况
好像在哪里有看到有未生效图层一说,,不知道是不是这个原因,,,什么是未生效图层
发表于 2012-8-14 11:30:54 | 显示全部楼层
Using Autodesk.AutoCAD.DatabaseServices,这句话加了吗??
您需要登录后才可以回帖 登录 | 注册

本版积分规则

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

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

Powered by Discuz! X3.4

Copyright © 2001-2021, Tencent Cloud.

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