admin 发表于 2024-9-25 13:25:32

如何遍历文档acDocManager,AcApDocumentIterator

AcApDocManager*pDocManager = acDocManager;
        if (pDocManager == NULL)
                return FALSE;

        AcApDocumentIterator* iter = acDocManager->newAcApDocumentIterator();
        if (iter != NULL)
        {
                AcApDocument* tmpDoc = NULL;
                for (; !iter->done(); iter->step())
                {
                        tmpDoc = iter->document();
                        if (tmpDoc != NULL)
                        {
                                //do sth;
                        }
                }
                delete iter;
                iter = NULL;
        }
页: [1]
查看完整版本: 如何遍历文档acDocManager,AcApDocumentIterator