AddMLeader メソッド(ActiveX)

指定した座標で、マルチ引出線を作成します。

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

構文と要素

VBA:

RetVal = object.AddMLeader(pointsArray, leaderLineIndex)
object

タイプ: BlockModelSpacePaperSpace

このメソッドが適用されるオブジェクト。

pointsArray

アクセス: 入力のみ

タイプ: バリアント型(3 要素の倍精度浮動小数点数型配列)

引出線を指定する 3D WCS 座標の配列。引出線定義のために少なくとも 2 点を指定。3 点目はオプション。

leaderLineIndex

アクセス: 入力のみ

タイプ: 長整数型

マルチ引出線クラスタの入力インデックス。

戻り値(RetVal)

タイプ: MLeader

新しく作成される MLeader オブジェクト。

注意

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

VBA:

Sub Example_AddMLeader()
    Dim oML As AcadMLeader
    Dim points(0 To 14) As Double
    
    ' Define the leader points
    points(0) = 1: points(1) = 1: points(2) = 0
    points(3) = 1: points(4) = 2: points(5) = 0
    points(6) = 2: points(7) = 2: points(8) = 0
    points(9) = 3: points(10) = 2: points(11) = 0
    points(12) = 4: points(13) = 4: points(14) = 0
    Dim i As Long
    Set oML = ThisDrawing.ModelSpace.AddMLeader(points, i)

End Sub

Visual LISP:

(vl-load-com)
(defun c:Example_AddMLeader()
    (setq acadObj (vlax-get-acad-object))
    (setq doc (vla-get-ActiveDocument acadObj))
  
    ;; Define the leader points
    (setq points (vlax-make-safearray vlax-vbDouble '(0 . 14)))
    (vlax-safearray-fill points '(1 1 0
                                  1 2 0
                                  2 2 0
                                  3 2 0
                                  4 4 0
                                 )
    )
    (setq i 0)
  
    ;; Add the mleader object to model space
    (setq modelSpace (vla-get-ModelSpace doc))
    (setq mLeader (vla-AddMLeader modelSpace points i))
)