- 积分
- 1148
- 明经币
- 个
- 注册时间
- 2004-5-18
- 在线时间
- 小时
- 威望
-
- 金钱
- 个
- 贡献
-
- 激情
-
|
怎么样在视图区中写入文本啊??我的程序没有出错,但在视图区就是不显示文本,各们大哥帮帮我了!!我的程序:
void ACADwenzi() { #ifdef OARXWIZDEBUG acutPrintf ("\nOARXWIZDEBUG - ACADwenzi() called."); #endif // OARXWIZDEBUG
// TODO: Implement the command //ÊäÈëÎı¾ AcDbBlockTable *pbt; acdbHostApplicationServices()->workingDatabase()->getSymbolTable(pbt, AcDb::kForRead); AcDbBlockTableRecord *pbtr; pbt->getAt(ACDB_MODEL_SPACE,pbtr,AcDb::kForWrite); pbt->close(); AcGePoint3d p2(542,431,0); AcDbObjectId textid; AcDbText *ptext=new AcDbText(p2,"ÎÒµÄСèÃÔ",textid,30,50); pbtr->appendAcDbEntity(textid,ptext); pbtr->close(); return;
} |
|