Is there a way to copy array specific properties (matching) to another array

Is there a way to copy array specific properties (matching) to another array?

For example an array has a distance between columns and rows, can I give another array the same values without typing them. I.e. like copying color with a match command (the little brush picto) from one entity to another.
Thx for your input.

Comments

  • ALANH
    edited July 2022
    Not sure about this but can go down the rabbit hole of an arary.

    (setq ent (entget (car (entsel))))
    (setq e2 (entget (cdr (assoc 330 ent))))
    (setq e3 (entget (cdr (assoc 330 e2))))
    the 40 values are spacing
    ((-1 . ) (0 . "ACDBASSOCACTION") (5 . "11C54") (330 . ) (100 . "AcDbAssocAction") (90 . 2) (90 . 0) (330 . ) (360 . ) (90 . 1) (90 . 3) (90 . 3) (360 . ) (360 . ) (360 . ) (90 . 0) (90 . 4) (360 . ) (360 . ) (360 . ) (360 . ) (90 . 0) (90 . 8) (90 . 0) (1 . "ItemSpacing") (90 . 1) (90 . 1) (40 . 12.0) (90 . 0) (1 . "RowSpacing") (90 . 1) (90 . 1) (40 . 18.0) (90 . 0) (1 . "LevelSpacing")
  • As Alan suggested, you can create a custom command to do exactly what you want. If you don't do it often enough to justify creating a custom command, you can use Ctrl-C (copy) and Ctrl-V (paste) in the Properties panel.
  • Thx @ALANH and @Anthony Apostolaros for your input.
    The special command is too difficult, so I will do the Ctrl-C (copy) and Ctrl-V (paste) instead.