Jump to content

Leaderboard

Popular Content

Showing content with the highest reputation on 11/05/2023 in all areas

  1. The following post may prove helpful: https://www.cadtutor.net/forum/topic/47639-getting-help-from-the-autocad-activex-and-vba-reference/#comment-391174
    1 point
  2. This will output all values of a selected entity (RO) = Read Only and can't be changed. ;;----------------------------------------------------------------------------;; ;; Dump All Visual Lisp Methods and Properties for Selected Entity (defun C:VDumpIt (/ ent) (while (setq ent (car (entsel "\nSelect Entity to Dump"))) (vlax-Dump-Object (vlax-Ename->Vla-Object ent) t) ) (princ) ) Output will look something like this.
    1 point
×
×
  • Create New...