获取所有者(父)对象的对象 ID。 支持的平台:仅窗口 签名工 务 局: object.OwnerID 属性值只读:是的 类型:Long_PTR 对象所有者的对象 ID。 言论没有额外的评论。 例子工 务 局: Sub Example_OwnerID() ' This example creates an MText object in model space ' and then finds the OwnerID for the object. Dim MTextObj As AcadMText Dim corner(0 To 2) As Double Dim width As Double Dim text As String corner(0) = 0#: corner(1) = 10#: corner(2) = 0# width = 10 text = "This is the text string for the MText object" ' Creates the MText object Set MTextObj = ThisDrawing.ModelSpace.AddMText(corner, width, text) ZoomAll MsgBox "The OwnerID for the MText object is: " & MTextObj.OwnerID End Sub Visual LISP: (vl-load-com) (defun c:Example_OwnerID() ;; This example creates an MText object in model space ;; and then finds the OwnerID for the object. (setq acadObj (vlax-get-acad-object)) (setq doc (vla-get-ActiveDocument acadObj)) (setq corner (vlax-3d-point 0 10 0) width 10 text "This is the text string for the MText object") ;; Creates the MText object (setq modelSpace (vla-get-ModelSpace doc)) (setq MTextObj (vla-AddMText modelSpace corner width text)) (vla-ZoomAll acadObj) (alert (strcat "The OwnerID for the MText object is: " (itoa (vla-get-OwnerID MTextObj)))) ) |
|Archiver|CAD开发者社区 ( 苏ICP备2022047690号-1 苏公网安备32011402011833)
GMT+8, 2025-1-8 19:39
Powered by Discuz! X3.4
Copyright © 2001-2021, Tencent Cloud.