简体   繁体   中英

Remove/Delete/Undo Parts

I have splitted the wall into parts. Now I want to remove the parts and keep the original wall. How do I remove/delete/undo the parts that have already been created? I have the partids which I would like to remove.

.ActiveDoc.Delete(partid) doesn't work out and throws an error.

You can accomplish this by deleting the PartMaker associated with the source element:

revitDoc.Delete(PartUtils.GetAssociatedPartMaker(revitDoc, SourceElementId).Id);

Have fun!

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM