Getting Help With a Function (AutoLISP)

The code that adds a lightweight polyline to the drawing calls a function named vla-addLightweightPolyline. Not only is that a lengthy term to write, but there are several functions whose names begin with vla-add that you will use to create entities. Rather than consulting a manual to look up the function name every time you create a program, let Visual LISP help.

To get help with using a function

  1. Enter the following on a blank line:
    (vla-add
  2. Press Ctrl+Shift+Spacebar.
  3. Scroll through the list until you find vla-addLightweightPolyline.
  4. Double-click on vla-addLightweightPolyline.

    Visual LISP displays the Symbol Service dialog box for the selected function.

  5. Clicking the Help button in the Symbol Service dialog box.
  6. Delete the changes you made to gpdraw.lsp; these were for demonstration purposes only. Also, close the Symbol Service and Apropos windows.