leonucadomi Posted November 30, 2022 Posted November 30, 2022 hello dear: I am using this line in a routine (setq ss (ssget '((0 . "TEXT")))) but i want to filter at once text and Mtext. can anybody help me? thanks Quote
1958 Posted November 30, 2022 Posted November 30, 2022 1 hour ago, leonucadomi said: hello dear: I am using this line in a routine (setq ss (ssget '((0 . "TEXT")))) but i want to filter at once text and Mtext. can anybody help me? thanks (setq ss (ssget '((0 . "*TEXT")))) 1 Quote
BIGAL Posted December 1, 2022 Posted December 1, 2022 (edited) That will get a couple of extra text types as well can also do. (setq ss (ssget '((0 . "TEXT,MTEXT")))) For most dwgs the *TEXT should be ok. Edited December 1, 2022 by BIGAL Quote
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.