CADSTA Tools supports standard LISP and VL applications in AutoCAD LT and AutoCAD. Its engine allows LISP applications to interoperate with AutoCAD LT seamlessly with no recompile required.
CADSTA Tools provides powerful productivity enhancement tools. The Appload command allows CADSTA users to load and run LISP routines, while the Startup Suite command loads LISP applications automatically during the startup inside AutoCAD and AutoCAD LT. Additionally, CADSTA Tools contains all functions in CADSTA Elements; and it is included in CADSTA Arch and CADSTA Max.
CADSTA Tools is a powerful and easy-to-use software preferred by CAD professionals worldwide.
(acad-push-dbmod) and (acad-pop-dbmod) |
(acad-push-dbmod) and (acad-pop-dbmod) are used to control DBMOD system variable. Using these two functions together, you can change a drawing without chaning the DBMOD system variable. |
For example |
(acad-push-dbmod) ; set DBMOD to flag 4 (command "_.color" "1") ; set DBMOD to flag 1 (command "_.line" "0.0 0.0 0.0" "100.0 100.0 0.0" "") ; set DBMOD to the original value (acad-pop-dbmod) |

|