The Visual LISP Developer's Bible - 2003 Edition

Jul 06, 2002 · Creates a single-dimension array of doubles, capable of storing three distinct elements (0, 1, 2). (setq sa (vlax-make-safearray vlax-vbString ‘(0 . 1) ‘(1 . 3))) Creates a two-dimensional array of strings, the first dimension contains two elements beginning at index 0. The second dimension contains three elements and begins at index 1. ................
................