I am using AutoCAD VBA with array.
I need to call a LISP function to pass a parameter (array).
How can I the pass an array from VBA to LISP?
I am using this expression: ThisDrawing.SendCommand "Myfunction"
I am using AutoCAD VBA with array.
I need to call a LISP function to pass a parameter (array).
How can I the pass an array from VBA to LISP?
I am using this expression: ThisDrawing.SendCommand "Myfunction"
usually, in Lisp you can call a function like this:
(myfunction param1 param2 param3)
e.g.
(calculate "Area" 2.3 12.8)
You have to know which parameter expects what content: a string or a real or other stuff
usually, in Lisp you can call a function like this:
(myfunction param1 param2 param3)
e.g.
(calculate "Area" 2.3 12.8)
You have to know which parameter expects what content: a string or a real or other stuff
Can't find what you're looking for? Ask the community or share your knowledge.