how to change degree settings...

how to change degree settings...

Anonymous
Not applicable
443 Views
2 Replies
Message 1 of 3

how to change degree settings...

Anonymous
Not applicable
Hi all,

I'd like to know if there is a way to programmatically change AutoCADs Angle setting from "decimal degrees" to "Deg/Min/Sec" with a precision of 0d00'00" and how i would go about doing it.

Any help is appreciated.

TIA
0 Likes
444 Views
2 Replies
Replies (2)
Message 2 of 3

Anonymous
Not applicable
MaYo said the following On 9/5/2006 7:46 AM:
> Hi all,
>
> I'd like to know if there is a way to programmatically change AutoCADs Angle setting from "decimal degrees" to "Deg/Min/Sec" with a precision of 0d00'00" and how i would go about doing it.


Sub foo()
ThisDrawing.SetVariable "AUNITS", 1
ThisDrawing.SetVariable "AUPREC", 4
End Sub



--
R.K. McSwain
http://rkmcswain.blogspot.com
0 Likes
Message 3 of 3

Anonymous
Not applicable
Thank you!!
0 Likes