How do I turn Ortho on using VBA
How do I turn Ortho on using VBA
(OP)
I need to turn Ortho on during one point in a program before the user draws a few lines and then turn it off later. Anyone know how to accomplish that?
INTELLIGENT WORK FORUMS
FOR ENGINEERING PROFESSIONALS Come Join Us!Are you an
Engineering professional? Join Eng-Tips Forums!
*Eng-Tips's functionality depends on members receiving e-mail. By joining you are opting in to receive e-mail. Posting GuidelinesJobs |
How do I turn Ortho on using VBA
|
RE: How do I turn Ortho on using VBA
RE: How do I turn Ortho on using VBA
ThisDrawing.SetVariable "ORTHOMODE", 1
turns on the ortho
ThisDrawing.SetVariable "ORTHOMODE", 0
turns off the ortho
Thanks again.