找回密码
 立即注册

QQ登录

只需一步,快速开始

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

[每日一码] 使用ARX创建线型(AcDbLinetypeTableRecord)

[复制链接]

0

主题

0

回帖

28

积分

管理员

积分
28
发表于 2024-3-14 19:37:07 | 显示全部楼层 |阅读模式
  1. #include "dbmain.h"         
  2. #include "dbsymtb.h"
  3. void utilsarxtest ()     {
  4.     AcDbLinetypeTable *pLtypeTable =NULL ;
  5.     // get the linetype table from the drawing
  6.     if ( acdbHostApplicationServices()->workingDatabase()->getLinetypeTable (pLtypeTable, AcDb::kForWrite) ==
  7. Acad::eOk ) {
  8.         AcDbLinetypeTableRecord *pLtypeTableRecord =new
  9. AcDbLinetypeTableRecord ;
  10.         // set all of the properties of the linetype table record.
  11.         pLtypeTableRecord->setAsciiDescription ("T E S T -") ;
  12.         pLtypeTableRecord->setPatternLength (0.75) ;
  13.         pLtypeTableRecord->setNumDashes (2) ;
  14.         pLtypeTableRecord->setDashLengthAt (0, 0.5) ;
  15.         pLtypeTableRecord->setDashLengthAt (1,-0.25) ;
  16.         pLtypeTableRecord->setName ("ASTESTER") ;
  17.         AcDbObjectId tmpId ;
  18.         // add the pLtypeTableRecord to the linetype table
  19.         if (pLtypeTable->add (tmpId, pLtypeTableRecord)==Acad::eOk){
  20.             pLtypeTableRecord->close () ;
  21.         } else {
  22.             delete pLtypeTableRecord ;
  23.         }
  24.         // close everything up
  25.         pLtypeTable->close () ;
  26.     }
  27. }
复制代码
您需要登录后才可以回帖 登录 | 立即注册

本版积分规则

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

GMT+8, 2024-12-29 04:47 , Processed in 0.152375 second(s), 22 queries .

Powered by Discuz! X3.5

© 2001-2024 Discuz! Team.

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