iLogic to Insert Static Sketch Symbol

iLogic to Insert Static Sketch Symbol

wtriplett
Contributor Contributor
854 Views
2 Replies
Message 1 of 3

iLogic to Insert Static Sketch Symbol

wtriplett
Contributor
Contributor

Hello,

I use iLogic to automatically insert sketch symbols to a fixed position in a drawing.

I   would like the symbol to be static or locked upon insertion so it cant be resized or rotated.

I have searched everywhere and cant find an answer.

Any suggestions would be greatly appreciated!

Thanks.

0 Likes
Accepted solutions (1)
855 Views
2 Replies
Replies (2)
Message 2 of 3

J-Camper
Advisor
Advisor
Accepted solution

Hello,

 

You can find SketchedSymbol Methods and Properties on the Online help site: SketchedSymbol Object 

 

The Static Property - Gets and sets whether to show the scale and rotation grip points on the SketchedSymbol

 

It is a Boolean variable set like this:

Dim MySketchedSymbol As SketchedSymbol
'MySketchedSymbol = 'However you are defining it
MySketchedSymbol.Static = True 'Sets symbol option Static.
Message 3 of 3

wtriplett
Contributor
Contributor

@J-Camper  Thank you for the reference information and the solution to my issue!

0 Likes