Announcements
Attention for Customers without Multi-Factor Authentication or Single Sign-On - OTP Verification rolls out April 2025. Read all about it here.
C_Haines_ENG
383 Views, 6 Replies

Turn off Sketch Symbol Leader

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?

Labels (4)