How can I manage the new trace feature with lisp?

How can I manage the new trace feature with lisp?

milettoKSQVQ
Participant Participant
331 Views
2 Replies
Message 1 of 3

How can I manage the new trace feature with lisp?

milettoKSQVQ
Participant
Participant

Hi everyone, 
I would like to get some infos about the Trace feauter (Autocad 2023).
I think that all the traces infos are stored in some kind of table but I'm not quite sure since there is no documentation about it.
Does someone have an idea on how I can get the traces infos using code?

0 Likes
332 Views
2 Replies
Replies (2)
Message 2 of 3

john.uhden
Mentor
Mentor

@milettoKSQVQ ,

Do what I do when I run into something about which I know basically nothing.

(setq e (car (entsel)))

(setq obj (vlax-ename->vla-object e))

(vlax-dump-object obj)

and inspect all the properties.

John F. Uhden

0 Likes
Message 3 of 3

Sea-Haven
Mentor
Mentor

Inspect the property co-ordinates. Note is 1 segment at a time.

 

The trace is a bit like a "solid" making a linetype with fill.

 

0 Likes