OwnerID32 プロパティ(ActiveX)

64 ビット システムで、オーナー(親)オブジェクトのオブジェクト ID を取得します。(旧式)

サポートされているプラットフォーム: Windows のみ

構文と要素

VBA:

object.OwnerID32
object

タイプ: すべての図形オブジェクトAttributeReferenceBlockBlocksDictionaryDictionariesDimensionDimStyleDimStylesGroupGroupsLayerLayersLayoutLayoutsLinetypeLinetypesMaterialMaterialsMLeaderStyleModelSpacePaperSpacePlotConfigurationPlotConfigurationsRegisteredApplicationRegisteredApplicationsSectionManagerSectionSettingsSortentsTableTableStyleTextStyleTextStylesUCSUCSsViewViewsViewportViewportsXRecord

このプロパティが適用されるオブジェクト。

プロパティの値

読み込み専用: はい

タイプ: 長整数型

オブジェクトのオーナーのオブジェクト ID。

注意

追加の注意はありません。

VBA:

Sub Example_OwnerID32()
    ' 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.OwnerID32
    
End Sub

Visual LISP:

(vl-load-com)
(defun c:Example_OwnerID32()
    ;; 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-OwnerID32 MTextObj))))
)