LoadARX メソッド(ActiveX)

指定された ObjectARX アプリケーションをロードします。

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

構文と要素

VBA:

object.LoadARX Name
object

タイプ: Application

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

Name

アクセス: 入力のみ

タイプ: 文字列

ロードする .arx アプリケーションの絶対パス名。

戻り値(RetVal)

戻り値はありません。

注意

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

VBA:

Sub Example_LoadARX()
    ' This example loads an ObjectARX application.
    
    ' Note: The application listed here does not exist and
    ' will cause an error when run. Change the application name
    ' to the path and name of your ObjectARX application.
    ThisDrawing.Application.LoadArx "MyARXApp.arx"
        
End Sub

Visual LISP:

(vl-load-com)
(defun c:Example_LoadARX()
    ;; This example loads an ObjectARX application.
    (setq acadObj (vlax-get-acad-object))
    
    ;; Note: The application listed here does not exist and
    ;; will cause an error when run. Change the application name
    ;; to the path and name of your ObjectARX application.
    (vla-LoadArx acadObj "MyARXApp.arx")
)