Message 1 of 4
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report
Hallo Community,
I found a way to implement the regen REGEN3 using only direct c++ calls.
auto pDb = acdbCurDwg();
auto pModel = acgsGetGsModel(pDb);
if (pModel)
{
pModel->invalidate(AcGsModel::kInvalidateAll);
acedRedraw(nullptr, 1);
}
Is there a way to do the same for REGEN and REGENALL?
Solved! Go to Solution.