Author Topic: SSGET syntax help.  (Read 1956 times)

0 Members and 1 Guest are viewing this topic.

mr_nick

  • Guest
SSGET syntax help.
« on: December 18, 2006, 08:58:26 AM »
What is the correct syntax to use to create a selection set of all mtext that is NOT on a particular style? I had assumed that using (-4 . "/=") (7 . "My_Text_Style") would do the job but it seems relational operators don't work in this instance.

Thanks.

kpblc

  • Bull Frog
  • Posts: 396
Re: SSGET syntax help.
« Reply #1 on: December 18, 2006, 09:02:37 AM »
(ssget '((7 . "~My_Text_Style"))) - does it works? I think you have to look at the wcmatch function
Sorry for my English.

ElpanovEvgeniy

  • Water Moccasin
  • Posts: 1569
  • Moscow (Russia)
Re: SSGET syntax help.
« Reply #2 on: December 18, 2006, 09:03:56 AM »
Code: [Select]
(ssget "_X" '((0 . "MTEXT") (7 . "~My_Text_Style")))

mr_nick

  • Guest
Re: SSGET syntax help.
« Reply #3 on: December 18, 2006, 09:16:54 AM »
(ssget "_X" '((0 . "MTEXT") (7 . "~My_Text_Style"))) did the job.

Many thanks  :-D