Message 1 of 7
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report
Im looking for a way to toggle all sketch symbols leaders off. I have the code below to attempt this but the .Leader property is read only.
Dim oDrawDoc As DrawingDocument = ThisApplication.ActiveDocument Dim oSheet As Sheet = oDrawDoc.ActiveSheet Dim oSketchedSymbols As SketchedSymbols = oSheet.SketchedSymbols For Each oItem As SketchedSymbol In oSketchedSymbols oItem.LeaderVisible = False oItem.Leader 'THIS IS READ ONLY??? Next
Does anyone else know how to solve this?
Solved! Go to Solution.