明经CAD社区

 找回密码
 注册

QQ登录

只需一步,快速开始

搜索
查看: 1527|回复: 2

修改块中对象的层属性又是怎样修改的

[复制链接]
发表于 2002-10-15 22:30:00 | 显示全部楼层 |阅读模式
 楼主| 发表于 2002-10-17 11:48:00 | 显示全部楼层

知道了

先在当前空间遍历块,找到块后修改
以下是VC代码
CString oldlayername;
        CString newlayername;
        oldlayername="oldlayer";
        newlayername="newlayer";
        for(int i=0;i< m_acadblocks.GetCount();i++)
        {
                m_acadblock.AttachDispatch(m_acadblocks.Item(COleVariant((short)i)),true);
                for(int j=0;j< m_acadblock.GetCount();j++)
                {       
                        m_acadentity=m_acadblock.Item(COleVariant((short)j));
                        if(!strcmp(oldlayername,m_acadentity.GetLayer()))
                                m_acadentity.SetLayer(newlayername);

                }
        }
发表于 2005-6-21 17:54:00 | 显示全部楼层
有没有VB的代码了?
您需要登录后才可以回帖 登录 | 注册

本版积分规则

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

GMT+8, 2024-11-27 15:54 , Processed in 0.153227 second(s), 23 queries , Gzip On.

Powered by Discuz! X3.4

Copyright © 2001-2021, Tencent Cloud.

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