找回密码
 立即注册

QQ登录

只需一步,快速开始

搜索
热搜: 活动 交友 discuz
查看: 42|回复: 0

外部参照相关的操作

[复制链接]

0

主题

0

回帖

26

积分

管理员

积分
26
发表于 2024-9-25 13:23:23 | 显示全部楼层 |阅读模式
  1. Acad::ErrorStatus acdbResolveCurrentXRefs(AcDbDatabase* pHostDb,
  2.     bool useThreadEngine = true, bool doNewOnly = false);
  3. /* acdbAttachXref --
  4.    This function is used to attach a new xref to the specified file
  5.    (pFilename) to a given database (pDb)..
  6.    A new block table record with the name specified by pBlockName
  7.    will be created and resolved as an external reference.  
  8.    The id of the new record will be set into xrefBlkId.
  9. */
  10. Acad::ErrorStatus acdbAttachXref(AcDbDatabase* pHostDb,
  11.                                  const ACHAR * pFilename,
  12.                                  const ACHAR * pBlockName,
  13.                                  AcDbObjectId& xrefBlkId);
  14. /* acdbOverlayhXref --
  15.    This function is used to overlay a new xref to the specified file
  16.    (pFilename) to a given database (pDb)..
  17.    A new block table record with the name specified by pBlockName
  18.    will be created and resolved as an external reference and flagged
  19.    as an overlay.  The id of the new record will be set into xrefBlkId.
  20. */
  21. Acad::ErrorStatus acdbOverlayXref(AcDbDatabase* pHostDb,
  22.                                   const ACHAR * pFilename,
  23.                                   const ACHAR * pBlockName,
  24.                                   AcDbObjectId& xrefBlkId);
  25. /* acdbDetachXref --
  26.    This function is used to detach a specified xref (xrefBlkId) from the
  27.    given database (pDb).   Note, references to the xref should be
  28.    erased prior to using this function.
  29. */
  30. Acad::ErrorStatus acdbDetachXref(AcDbDatabase* pHostDb,
  31.                            const AcDbObjectId& xrefBlkId);
  32. Acad::ErrorStatus acdbUnloadXrefs(AcDbDatabase*      pHostDb,
  33.                             const AcDbObjectIdArray& xrefBlkIds,
  34.                             const bool               bQuiet = true);
  35. Acad::ErrorStatus acdbReloadXrefs(AcDbDatabase*      pHostDb,
  36.                             const AcDbObjectIdArray& xrefBlkIds,
  37.                                   bool               bQuiet = true);
  38. Acad::ErrorStatus acdbBindXrefs(AcDbDatabase*      pHostDb,
  39.                           const AcDbObjectIdArray& xrefBlkIds,
  40.                           const bool               bInsertBind,
  41.                           const bool               bAllowUnresolved = false,
  42.                           const bool               bQuiet = true);
  43. Acad::ErrorStatus acdbXBindXrefs(AcDbDatabase*     pHostDb,
  44.                            const AcDbObjectIdArray xrefSymbolIds,
  45.                            const bool              bInsertBind,
  46.                            const bool              bQuiet = true);
  47. //以下是使用例子
  48.         AcDbDatabase  *pDb = acdbCurDwg();
  49.         if (pDb == NULL)
  50.         {
  51.                 return;
  52.         }
  53.         AcApDocument * pDoc = acDocManager->curDocument();
  54.         if (pDoc == NULL)
  55.                 return ;
  56.       
  57.         //锁定文档很重要 否则会执行失败
  58.         acDocManager->lockDocument(pDoc);
  59.         Acad::ErrorStatus es;
  60.         es = acdbBindXrefs(pDb,m_entIdArry,true);//插入当前dwg
  61.         /*其他的绑定附加 拆离 卸载 类似 把函数换掉既可*/
  62.         if (es == Acad::eOk)
  63.         {
  64.                 acutPrintf(_T("\n绑定外部参照成功!\n"));
  65.         }
  66.         m_StrXrefArray.RemoveAll();
  67.         actrTransactionManager->flushGraphics();
  68.         acedUpdateDisplay();
  69.         acDocManager->unlockDocument(pDoc);
复制代码
您需要登录后才可以回帖 登录 | 立即注册

本版积分规则

Archiver|手机版|小黑屋|膜结构网

GMT+8, 2024-12-27 22:37 , Processed in 0.157309 second(s), 19 queries .

Powered by Discuz! X3.5

© 2001-2024 Discuz! Team.

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