明经CAD社区

 找回密码
 注册

QQ登录

只需一步,快速开始

搜索
查看: 1679|回复: 7

高手帮忙,由块名得到块中属性的值

[复制链接]
发表于 2005-1-7 10:09:00 | 显示全部楼层 |阅读模式
给定一个块名,得到该块中所有属性的值,请大家帮忙啊。谢谢
 楼主| 发表于 2005-1-11 16:42:00 | 显示全部楼层
怎么没人帮我啊5555555555
 楼主| 发表于 2005-1-11 16:44:00 | 显示全部楼层
help me master
 楼主| 发表于 2005-1-13 09:47:00 | 显示全部楼层
快来帮帮我吧,急
发表于 2005-1-13 16:30:00 | 显示全部楼层

reply

使用AcDbBlockReferenceIterator


帮你找个例子,wait...
 楼主| 发表于 2005-1-21 16:28:00 | 显示全部楼层
To 王咣生 找到例子了吗? 谢谢
 楼主| 发表于 2005-1-25 10:26:00 | 显示全部楼层
怎么还没消息啊。我急啊
发表于 2005-1-25 13:04:00 | 显示全部楼层

reply

本帖最后由 作者 于 2005-1-25 17:22:15 编辑

			 static void ExtractAttributes()
{
ads_name ename;
ads_point pt;

if(ads_entsel("\nSelect an block: ", ename, pt) != RTNORM)
{
ads_printf("\nError selecting entity.");
return;
}

AcDbObjectId eId;
acdbGetObjectId(eId, ename);
AcDbEntity* pEnt = NULL;
		if (acdbOpenObject(pEnt, eId , AcDb::kForRead) != Acad::eOk)
{
ads_printf("\nError opening entity.");
if(pEnt)
pEnt->close();
return;
}

if(pEnt->isA() != AcDbBlockReference::desc())
{
ads_printf("\nMust select a block insert.");
pEnt->close();
return;
}
		AcDbBlockReference *pBlkRef = AcDbBlockReference::cast(pEnt);
AcDbAttribute *pAtt = NULL;
AcDbObjectIterator *pAttIter = pBlkRef->attributeIterator();
							 _TCHAR tagName[33], strValue[256];
		for (pAttIter->start(); !pAttIter->done(); pAttIter->step())
{
acdbOpenObject(pAtt, pAttIter->objectId(), AcDb::kForRead);
// get the tag string
_tcscpy(tagName, pAtt->tag());
ads_printf("\nBlock Insert Attribute tag is: %s", tagName);
_tcscpy(strValue, pAtt->textString());
ads_printf("\nBlock Insert Attribute string value is: %s",

strValue);
pAtt->close();
}
delete pAttIter;
pBlkRef->close();
}
您需要登录后才可以回帖 登录 | 注册

本版积分规则

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

GMT+8, 2024-11-26 08:52 , Processed in 0.172134 second(s), 24 queries , Gzip On.

Powered by Discuz! X3.4

Copyright © 2001-2021, Tencent Cloud.

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