明经CAD社区

 找回密码
 注册

QQ登录

只需一步,快速开始

搜索
查看: 3570|回复: 4

诸位朋友,如何 用setxdata 方法删除实体扩展数据?

[复制链接]
发表于 2006-3-10 21:15:00 | 显示全部楼层 |阅读模式

 我是这样做的,但是错了....

我调了一晚上,郁闷的很.

 void clearname(AcDbPolyline* pPolyline)
{ struct  resbuf  *pRb=NULL;
 pPolyline->upgradeOpen();
 pPolyline->setXData(pRb);
 pPolyline->close();
 acutRelRb(pRb);
}

 楼主| 发表于 2006-3-10 21:26:00 | 显示全部楼层
我 pRb->...type=1001也试过 不行.
发表于 2006-7-20 20:23:00 | 显示全部楼层

我试过,可以的. 

  pRb->restype=1001;
   pTemp = pRb;
   pTemp->rbnext=NULL;

pObj->setXData(pRb)

发表于 2006-7-25 16:37:00 | 显示全部楼层

//----------------------------------------------------------------------------------------------------
// created: 22/7/2006   17:53   ShangHai
// author:  iPi 
// purpose: Delete X-Data of a entity, no matter if there is X-Data attached to the entity
//              when we fail to store a flange,but some information has already been added as x data,
//              we need to delete these x data for consistency
//----------------------------------------------------------------------------------------------------
bool DelXData(AcDbObjectId adoiEntity)
{
    //Open the entity for editing
    AcDbEntity *padEntity;
    if (acdbOpenAcDbEntity(padEntity, adoiEntity, AcDb::kForWrite) != Acad::eOk) {
        return false;
    }//end if

    //Get x data result buffer of the entity
    resbuf *rbXdata = padEntity->xData(NULL);

    //result buffer not null
    if (rbXdata) {
        rbXdata->rbnext = NULL;
        padEntity->setXData(rbXdata);
        acutRelRb(rbXdata);
    }//end if

    padEntity->close();

    return true;

}//end of function : DelXData()

发表于 2014-6-17 22:19:16 | 显示全部楼层
pipilu 发表于 2006-7-25 16:37
//-------------------------------------------------------------------------------------------------- ...

兄弟   太谢谢你了
您需要登录后才可以回帖 登录 | 注册

本版积分规则

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

GMT+8, 2024-11-25 07:44 , Processed in 0.162578 second(s), 24 queries , Gzip On.

Powered by Discuz! X3.4

Copyright © 2001-2021, Tencent Cloud.

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