指定在打印布局时,线宽是否与几何图形的其余部分一起缩放。 支持的平台:仅窗口 属性值只读:不 类型:布尔
言论默认情况下,线宽以绝对大小(不缩放)打印。 对模型空间布局禁用的属性。 例子工 务 局: Sub Example_ScaleLineweights()
' This example reads and modifies the ScaleLineweights
' Layout value.
' When finished, this example resets the value back to
' its original value.
Dim ACADLayout As ACADLayout
Dim originalValue As Boolean
' Get the layout object
Set ACADLayout = ThisDrawing.ActiveLayout
' Read and display the original value
originalValue = ACADLayout.ScaleLineweights
MsgBox "The ScaleLineweights value is set to: " & originalValue
' Modify the ScaleLineweights preference by toggling the value
ACADLayout.ScaleLineweights = Not ACADLayout.ScaleLineweights
MsgBox "The ScaleLineweights preference has been set to: " & ACADLayout.ScaleLineweights
' Reset the preference back to its original value
ACADLayout.ScaleLineweights = originalValue
MsgBox "The ScaleLineweights preference was reset back to: " & originalValue
End Sub
Visual LISP: (vl-load-com)
(defun c:Example_ScaleLineweights()
;; This example reads and modifies the ScaleLineweights
;; Layout value.
;; When finished, this example resets the value back to
;; its original value.
(setq acadObj (vlax-get-acad-object))
(setq doc (vla-get-ActiveDocument acadObj))
;; Get the layout object
(setq ACADLayout (vla-get-ActiveLayout doc))
;; Read and display the original value
(setq originalValue (vla-get-ScaleLineweights ACADLayout))
(alert (strcat "The ScaleLineweights value is set to: " (if (= originalValue :vlax-true) "True" "False")))
;; Modify the ScaleLineweights preference by toggling the value
(vla-put-ScaleLineweights ACADLayout (if (= originalValue :vlax-true) :vlax-false :vlax-true))
(alert (strcat "The ScaleLineweights preference has been set to: " (if (= (vla-get-ScaleLineweights ACADLayout) :vlax-true) "True" "False")))
;; Reset the preference back to its original value
(vla-put-ScaleLineweights ACADLayout originalValue)
(alert (strcat "The ScaleLineweights preference was reset back to: " (if (= originalValue :vlax-true) "True" "False")))
)
|
|Archiver|CAD开发者社区
( 苏ICP备2022047690号-1 苏公网安备32011402011833)
GMT+8, 2025-11-29 23:45
Powered by Discuz! X3.4
Copyright © 2001-2021, Tencent Cloud.