Reputation: 33
I have a situation where i want to crop ,cut or select the objects of dwg file & save in new file. I have came up with drawing an polygon using markup feature of auto desk forge but now i want to select or crop the area within the polygon, is there any way possible to achieve this. Thanks
Upvotes: 0
Views: 65
Reputation: 8604
To create a second .dwg
with the cropped objects you can use Design Automation, which allow you to open the file and copy the objects you need using AutoCAD engine.
Note that on Viewer there is a dbId, but this is not valid on AutoCAD. Instead you need to get the externalId
, which should be the respective Handle
. Then, on Design Automation, get objectId from it. See more here.
Upvotes: 1