Message 1 of 6
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report
Hello,
I have an IDW template filled with sketched symbols which balloons the file size on the IDW to over 3MB as a template. I have iLogic that works, but also deletes all of the sketched symbols that are active in the drawing. I would like to use the iLogic I have deleting all the unused sketched symbols and keeping the active ones on the drawing. Any help you can provide modifying the iLogic below will be greatly appreciated! Thank you!
Dim oDrawDoc As DrawingDocument oDrawDoc = ThisApplication.ActiveDocument Dim oSketchedSymbolDef As SketchedSymbolDefinition For Each oSketchedSymbolDef In oDrawDoc.SketchedSymbolDefinitions oSketchedSymbolDef.Delete Next
Solved! Go to Solution.