Author Topic: Dimensioning  (Read 4411 times)

0 Members and 1 Guest are viewing this topic.

rugaroo

  • Bull Frog
  • Posts: 378
  • The Other CAD Guy
Dimensioning
« on: November 12, 2003, 01:51:36 PM »
Is there a way to build a selection set of all dimensions/leaders in model, and then another selection of all dims/leaders in paper? If there is a way I can, can I just do it with lisp, or do I have to use vl?

Rug
LDD06-09 | C3D 04-19 | Infraworks 360 | VS2012-VS2017

daron

  • Guest
Dimensioning
« Reply #1 on: November 12, 2003, 01:52:56 PM »
Filter command should work?

SMadsen

  • Guest
Dimensioning
« Reply #2 on: November 12, 2003, 01:56:42 PM »
(setq ssModel (ssget "X" '((0 . "DIMENSION,LEADER")(67 . 0))))

(setq ssPaper (ssget "X" '((0 . "DIMENSION,LEADER")(67 . 1))))