UnloadARX Method

Back to Methods Reference

Unloads the specified AutoCAD ARX application.

Signature

VBA : object.UnloadARX Name

VL : (vla-UnloadARX object Name)

(vla-UnLoadARX applic "c:/test.arx")

  • Object : Application
    The object or objects this method applies to.

  • Name : String; input-only
    The name of the application to unload.

Remarks

If the specified application is locked when this method is called, the method will fail.

NOTE Do not attempt to unload the file acadvba.arx.

Example :


(defun c:al-unloadarx ()

(vl-load-com)

(setq applic (vlax-get-acad-object))
                        
(vla-UnLoadARX applic "c:/test.arx")

(princ)

);defun

 
The AutoLisp/Visual Lisp/VBA Resource Website
Google
Search the WWW Search AfraLisp

Copyright © 1999-Perpetuity by AfraLisp

All rights reserved.
Information in this document is subject to change without notice.
Site created and maintained by Kenny Ramage

The AutoLisp/Visual Lisp/VBA Resource Website