ADN Club > AutoLisp / VisualLISP и DCL
номер цвета экрана
(1/1)
altver:
добрый день!
Необходимо опредилить номер цвета экрана.
Есть какая-то переменная?
Александр Ривилис:
altver,
А читать документацию не пробовал? https://help.autodesk.com/view/ACD/2025/ENU/?guid=GUID-5ECA99D3-3864-4CEB-A7FA-73755F952825
--- Код - Auto/Visual Lisp [Выбрать] ---(vl-load-com)(defun c:Example_GraphicsWinModelBackgrndColor() ;; This example returns the current setting of ;; GraphicsWinModelBackgrndColor. It then changes the value, and finally ;; it resets the value back to the original setting. (setq acadObj (vlax-get-acad-object)) (setq doc (vla-get-ActiveDocument acadObj)) (setq preferences (vla-get-Preferences acadObj)) ;; Retrieve the current GraphicsWinModelBackgrndColor value (setq currGraphicsWinModelBackgrndColor (vlax-variant-change-type (vla-get-GraphicsWinModelBackgrndColor (vla-get-Display preferences)) vlax-vbLong)) (alert (strcat "The current value for GraphicsWinModelBackgrndColor is " (itoa (vlax-variant-value currGraphicsWinModelBackgrndColor)))) ;; Change the value for GraphicsWinModelBackgrndColor (vla-put-GraphicsWinModelBackgrndColor (vla-get-Display preferences) (vlax-make-variant 127 19)) (setq newValue (vlax-variant-change-type (vla-get-GraphicsWinModelBackgrndColor (vla-get-Display preferences)) vlax-vbLong)) (alert (strcat "The new value for GraphicsWinModelBackgrndColor is " (itoa (vlax-variant-value newValue)))) ;; Reset GraphicsWinModelBackgrndColor to its original value (vla-put-GraphicsWinModelBackgrndColor (vla-get-Display preferences) currGraphicsWinModelBackgrndColor) (alert (strcat "The GraphicsWinModelBackgrndColor value is reset to " (itoa (vlax-variant-value currGraphicsWinModelBackgrndColor)))))
altver:
Спасибо, Александр!
замечание принимается!
Навигация
Перейти к полной версии