ListArx Method

Back to Methods Reference

Gets the currently loaded AutoCAD ARX applications.

Signature

VBA : RetVal = object.ListArx()

VL : RetVal = (vla-ListArx object)

(vla-ListARX applic)

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

  • RetVal : Variant
    An array of ARX applications currently loaded. Returns empty if no applications are currently loaded.

Example :


(defun c:al-listarx ()

(vl-load-com)

(setq applic (vlax-get-acad-object))
                        
(setq thearx (vla-ListARX applic))

(princ thearx)

(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