指定された ObjectARX アプリケーションをロードします。
サポートされているプラットフォーム: Windows のみ
VBA:
object.LoadARX Name
タイプ: Application
このメソッドが適用されるオブジェクト。
アクセス: 入力のみ
タイプ: 文字列
ロードする .arx アプリケーションの絶対パス名。
戻り値はありません。
追加の注意はありません。
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") )