Database 属性 (ActiveX) 
获取对象所属的数据库。 支持的平台:仅限 Windows 言论没有其他评论。 例子VBA: Sub Example_Database()
    ' This example references the Database object obtained from model space.
    ' Information from the Database object is then displayed
    
    Dim Database As AcadDatabase
    
    ' Attach to Database object
    Set Database = ThisDrawing.ModelSpace.Database
    MsgBox "We now have access to the properties and methods of the Database object!"
    
    ' Retrieve the number of Blocks in this database
    MsgBox "The number of Blocks in this database is: " & Database.Blocks.Count
    ' Release object
    Set Database = Nothing
    MsgBox "The Database object has been released!"
End Sub
可视化 LISP: (vl-load-com)
(defun c:Example_Database()
    ;; This example references the Database object obtained from model space.
    ;; Information from the Database object is then displayed
    (setq acadObj (vlax-get-acad-object))
    (setq doc (vla-get-ActiveDocument acadObj))
    
    ;; Attach to Database object
    (setq database (vla-get-Database (vla-get-ModelSpace doc)))
    (alert "We now have access to the properties and methods of the Database object!")
    
    ;; Retrieve the number of Blocks in this database
    (alert (strcat "The number of Blocks in this database is: " (itoa (vla-get-Count (vla-get-Blocks database)))))
    ;; Release object
    (vlax-release-object database)
    (alert "The Database object has been released!")
)
 | 
|Archiver|CAD开发者社区
( 苏ICP备2022047690号-1   苏公网安备32011402011833)
GMT+8, 2025-11-4 23:29
Powered by Discuz! X3.4
Copyright © 2001-2021, Tencent Cloud.