rbdome
2006-07-20, 02:59 AM
What are (if any) the system variables called for the following Options Diabox Settings:
AutoSnap marker color on Drafting Tab
Display Layout and Model tabs on Display Tab?
rkmcswain
2006-07-20, 03:26 AM
No, but these properties are accessible via VBA or Visual Lisp. Here is a sample of VLisp code.
(vla-get-GraphicsWinModelBackgrndColor
(vla-get-display
(vla-get-preferences (vlax-get-acad-object))
)
)
(vla-get-GraphicsWinLayoutBackgrndColor
(vla-get-display
(vla-get-preferences (vlax-get-acad-object))
)
)
(vla-get-AutoSnapMarkerColor
(vla-get-drafting
(vla-get-preferences (vlax-get-acad-object))
)
)
Powered by vBulletin® Version 4.2.5 Copyright © 2025 vBulletin Solutions Inc. All rights reserved.