天气与日历 切换到窄版

 找回密码
 立即注册
中国膜结构网
十大进口膜材评选 十大国产膜材评选 十大膜结构设计评选 十大膜结构公司评选
查看: 156|回复: 0

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

[复制链接]
  • TA的每日心情
    开心
    昨天 06:36
  • 签到天数: 15 天

    [LV.4]偶尔看看III

    105

    主题

    11

    回帖

    1308

    积分

    管理员

    积分
    1308
    QQ
    发表于 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.   }
    复制代码

     

     

     

     

    [每日一码] ARX实例代码 --- 一些常用的对象转字符串函数
    您需要登录后才可以回帖 登录 | 立即注册

    本版积分规则

    QQ|Archiver|中国膜结构网|中国膜结构协会|进口膜材|国产膜材|ETFE|PVDF|PTFE|设计|施工|安装|车棚|看台|污水池|中国膜结构网_中国空间膜结构协会

    GMT+8, 2024-11-1 08:35 , Processed in 0.139887 second(s), 29 queries .

    Powered by Discuz! X3.5

    © 2001-2024 Discuz! Team.

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