Path プロパティ(ActiveX)

ブロック、ドキュメント、アプリケーション、または外部参照のパスを取得します。

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

構文と要素

VBA:

object.Path
object

タイプ: ApplicationBlockDocumentExternalReferencePointCloudPointCloudEx

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

プロパティの値

読み込み専用: はい(ExternalReference および Block オブジェクト以外)

タイプ: 文字列

アプリケーション、ドキュメント、または外部参照のパス。

注意

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

VBA:

Sub Example_Path()
    ' This example returns the path of the drawing and application.
    
    ' If the drawing has not been saved, the path of the
    ' document will be blank.
    Dim docPath As String
    docPath = ThisDrawing.Path
    MsgBox "The Path of the current drawing is " & docPath, , "Path Example"
    
    Dim appPath As String
    appPath = ThisDrawing.Application.Path
    MsgBox "The Path of the current appication is " & appPath, , "Path Example"
    
End Sub

Visual LISP:

(vl-load-com)
(defun c:Example_Path()
    ;; This example returns the path of the drawing and application.
    (setq acadObj (vlax-get-acad-object))
    (setq doc (vla-get-ActiveDocument acadObj))

    ;; If the drawing has not been saved, the path of the
    ;; document will be blank.
    (setq docPath (vla-get-Path doc))
    (alert (strcat "The Path of the current drawing is " docPath))
    
    (setq appPath (vla-get-Path acadObj))
    (alert (strcat "The Path of the current appication is " appPath))
)