SetDatabase 方法 (ActiveX)
将 AutoCAD 数据库与 LayerStateManager 对象相关联。 支持的平台:仅限 Windows 签名VBA: object.SetDatabase Database
返回值 (RetVal)无返回值。 言论没有其他评论。 例子VBA: Sub Example_SetDatabase() ' The following code saves the color and linetype settings ' of the current layer. It uses the SetDatabase method to ' associate the current drawing database with the ' LayerStateManager object. Dim oLSM As AcadLayerStateManager ' Access the LayerStateManager object Set oLSM = ThisDrawing.Application. _ GetInterfaceObject("AutoCAD.AcadLayerStateManager." & Left(AcadApplication.Version, 2)) ' Associate the current drawing database with LayerStateManager oLSM.SetDatabase ThisDrawing.Database oLSM.Save "ColorLinetype", acLsColor + acLsLineType End Sub 可视化 LISP: (defun c:Example_SetDatabase() ;; The following code saves the color and linetype settings ;; of the current layer. It uses the SetDatabase method to ;; associate the current drawing database with the ;; LayerStateManager object. (setq acadObj (vlax-get-acad-object)) (setq doc (vla-get-ActiveDocument acadObj)) ;; Access the LayerStateManager object (setq oLSM (vla-GetInterfaceObject acadObj (strcat "AutoCAD.AcadLayerStateManager." (substr (getvar "ACADVER") 1 2)))) ;; Associate the current drawing database with LayerStateManager (vla-SetDatabase oLSM (vla-get-Database doc)) (vla-Save oLSM "ColorLinetype" (+ acLsColor acLsLineType)) ) |
|Archiver|CAD开发者社区 ( 苏ICP备2022047690号-1 苏公网安备32011402011833)
GMT+8, 2025-1-19 06:49
Powered by Discuz! X3.4
Copyright © 2001-2021, Tencent Cloud.