找回密码
 立即注册

QQ登录

只需一步,快速开始

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

[每日一码] ARX实例代码 --- 一些常用的对象转字符串函数

[复制链接]

1

主题

0

回帖

33

积分

管理员

积分
33
发表于 2024-3-14 21:02:37 | 显示全部楼层 |阅读模式
  1. /*Utils*/
  2. //对象ID转字符串
  3.   CString getObjectIdToStr(const AcDbObjectId& id)
  4.     {
  5.     CString str = 采用T("");
  6.     ads采用name ent;
  7.     acdbGetAdsName(ent, id);
  8.     str.Format(采用T("%lx"), ent[0]);
  9.     return str;
  10.     }
  11. //对象句柄转字符串
  12.   CString objToHandleStr(const AcDbObject* obj)
  13.     {
  14.     ASSERT(obj != NULL);
  15.     AcDbHandle handle;
  16.     obj->getAcDbHandle(handle);
  17.     TCHAR tmpStr[256];
  18.     handle.getIntoAsciiBuffer(tmpStr);
  19.     CString str = tmpStr;
  20.     return str;
  21.     }
  22.   CString intDbIdToStr(const Adesk::IntDbId intVal)
  23.     {
  24.     CString str = 采用T("");
  25.     #if !defined(采用WIN64) && !defined (采用AC64)
  26.       str.Format(采用T("%d"), intVal);
  27.     #else
  28.       str.Format(采用T("%I64d"), intVal);
  29.     #endif
  30.     return str;
  31.     }
  32. //布尔值转字符串
  33.   CString booleanToStr(bool b)
  34.   {
  35.     CString str = 采用T("");
  36.     if (b)
  37.       str = 采用T("True");
  38.     else
  39.       str = 采用T("False");
  40.     return str;
  41.   }
复制代码
您需要登录后才可以回帖 登录 | 立即注册

本版积分规则

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

GMT+8, 2024-12-29 20:35 , Processed in 0.142033 second(s), 22 queries .

Powered by Discuz! X3.5

© 2001-2024 Discuz! Team.

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