获取文档的视图集合。 支持的平台:仅窗口 言论没有额外的评论。 例子工 务 局: 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
Visual 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-10-29 14:27
Powered by Discuz! X3.4
Copyright © 2001-2021, Tencent Cloud.