Views 属性 (ActiveX) 
获取文档的 Views 集合。 支持的平台:仅限 Windows 言论没有其他评论。 例子VBA: Sub Example_Views()
    ' This example finds the current views collection and
    ' adds a new view to that collection.
    
    Dim viewColl As AcadViews
    Set viewColl = ThisDrawing.Views
    
    ' Create a view named "TEST" in the current drawing
    Dim viewObj As AcadView
    Set viewObj = viewColl.Add("TEST")
    MsgBox "A new view called " & viewObj.name & " has been added to the views collection.", vbInformation, "Views Example"
End Sub
可视化 LISP: (vl-load-com)
(defun c:Example_Views()
    ;; This example finds the current views collection and
    ;; adds a new view to that collection.
    (setq acadObj (vlax-get-acad-object))
    (setq doc (vla-get-ActiveDocument acadObj))
    (setq viewColl (vla-get-Views doc))
    
    ;; Create a view named "TEST" in the current drawing
    (setq viewObj (vla-Add viewColl "TEST"))
    (alert (strcat "A new view called " (vla-get-Name viewObj) " has been added to the views collection."))
)
 | 
|Archiver|CAD开发者社区
( 苏ICP备2022047690号-1   苏公网安备32011402011833)
GMT+8, 2025-11-4 19:34
Powered by Discuz! X3.4
Copyright © 2001-2021, Tencent Cloud.