TA的每日心情 | 开心 昨天 06:36 |
---|
签到天数: 15 天 [LV.4]偶尔看看III
管理员
- 积分
- 1308
|
- // Close the other documents
- AcApDocumentIterator *Iter
- = acDocManager->newAcApDocumentIterator();
- while(!Iter->done())
- {
- if (Iter->document()!=acDocManager->curDocument())
- {
- acDocManager->closeDocument(Iter->document());
- }
- Iter->step();
- }
- delete Iter;
- // Now close the current document
- ::acDocManagerPtr()->appContextCloseDocument(acDocManager->curDocument());
复制代码 |
|