Message 1 of 8
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report
Hello,
Can someone help me out with some iLogic to delete a sketched symbol from a drawing by its name?
I'm quite a beginner with this, so I might be overlooking something..
This is the code is have:
Dim oDrawDoc As DrawingDocument= ThisApplication.ActiveDocument Dim oSketchedSymbolDef As SketchedSymbolDefinition
If oDrawDoc.oSketchedSymbolDef.Item = "Sketched Symbol Name" Then
oSketchedSymbolDef.Delete
Else
End If
Thanks!
Solved! Go to Solution.