<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic Re: LISP FOR MAKE A INDIVIUAL GROUP TEXT WITH LINE in Visual LISP, AutoLISP and General Customization Forum</title>
    <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/lisp-for-make-a-indiviual-group-text-with-line/m-p/7955312#M105775</link>
    <description>&lt;P&gt;Thanks for&amp;nbsp;the reply,&lt;/P&gt;&lt;P&gt;but it only create a underline not create a group of text and polyline. I want a group of selected text and under polyline together.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;for&amp;nbsp;creating underline. I use strikethrough &lt;A title="Strikethrough" href="http://lee-mac.com/strikethrough.html" target="_blank"&gt;http://lee-mac.com/strikethrough.html&lt;/A&gt;&lt;/P&gt;&lt;P&gt;by lee mac.&lt;/P&gt;</description>
    <pubDate>Tue, 24 Apr 2018 11:45:21 GMT</pubDate>
    <dc:creator>jaggisingh003</dc:creator>
    <dc:date>2018-04-24T11:45:21Z</dc:date>
    <item>
      <title>LISP FOR MAKE A INDIVIUAL GROUP TEXT WITH LINE</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/lisp-for-make-a-indiviual-group-text-with-line/m-p/7949776#M105771</link>
      <description>&lt;P&gt;HELO,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;IF ANY ONE SUGGEST A LISP FOR MAKE A INDIVIUAL GROUP&amp;nbsp; OF TEXT WITH UNDER POLYLINE.&lt;/P&gt;</description>
      <pubDate>Sat, 21 Apr 2018 12:23:08 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/lisp-for-make-a-indiviual-group-text-with-line/m-p/7949776#M105771</guid>
      <dc:creator>jaggisingh003</dc:creator>
      <dc:date>2018-04-21T12:23:08Z</dc:date>
    </item>
    <item>
      <title>Re: LISP FOR MAKE A INDIVIUAL GROUP TEXT WITH LINE</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/lisp-for-make-a-indiviual-group-text-with-line/m-p/7949862#M105772</link>
      <description>&lt;P&gt;Have you considered adding an &lt;U&gt;underscore&lt;/U&gt; to your text?&lt;/P&gt;</description>
      <pubDate>Sat, 21 Apr 2018 14:25:44 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/lisp-for-make-a-indiviual-group-text-with-line/m-p/7949862#M105772</guid>
      <dc:creator>john.uhden</dc:creator>
      <dc:date>2018-04-21T14:25:44Z</dc:date>
    </item>
    <item>
      <title>Re: LISP FOR MAKE A INDIVIUAL GROUP TEXT WITH LINE</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/lisp-for-make-a-indiviual-group-text-with-line/m-p/7955093#M105773</link>
      <description>&lt;P&gt;Yes Sir,&amp;nbsp; I tried,&lt;/P&gt;&lt;P&gt;but in that case, I don't&amp;nbsp;get the (Object snap) end point of line.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 24 Apr 2018 10:01:34 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/lisp-for-make-a-indiviual-group-text-with-line/m-p/7955093#M105773</guid>
      <dc:creator>jaggisingh003</dc:creator>
      <dc:date>2018-04-24T10:01:34Z</dc:date>
    </item>
    <item>
      <title>Re: LISP FOR MAKE A INDIVIUAL GROUP TEXT WITH LINE</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/lisp-for-make-a-indiviual-group-text-with-line/m-p/7955244#M105774</link>
      <description>&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;PRE&gt;(defun c:UnderlineText ( / )&lt;BR /&gt;&amp;nbsp;&amp;nbsp; (while (setq ent (entsel))&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; (setq entData (entget (car ent))&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; entType (cdr (assoc 0 entData))&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; )&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; (cond&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; ((= entType "TEXT")&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; (setq obj (vlax-ename-&amp;gt;vla-object (car ent))&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; box (vlax-invoke-method obj 'getboundingbox 'pt1 'pt2)&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; ll (vlax-safearray-&amp;gt;list pt1)&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; ur (vlax-safearray-&amp;gt;list pt2)&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; lr (list (car ur)(cadr ll))&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; )&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; (command "_.line" ll lr "")&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; )&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; )&lt;BR /&gt;&amp;nbsp;&amp;nbsp; )&lt;BR /&gt;)&lt;/PRE&gt;&lt;P&gt;This will do just what you want.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Note: as i took the code from a larger function (to create boxes, instead of underlining)&lt;/P&gt;&lt;P&gt;the &lt;FONT color="#ff0000"&gt;(cond ...&lt;/FONT&gt; has only 1 condition, Text. You could add more options (mtext, blocks etc) or get rid of the cond. Because of that, it doesn't check if the user did select a text. (it will currently do nothing if you select something else)&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;It also continues until the user selects nothing or hits 'escape'. Allowing to underline multiple text entities one after the other. Remove the &lt;FONT color="#ff0000"&gt;(while ...&lt;/FONT&gt; cycle to use it just ones&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Note2:&lt;/P&gt;&lt;P&gt;You might have to turn off "object snap", to get a correct line. (otherwise the endpoint of the line might snap to the starting point or something else close enough to snap to)&lt;/P&gt;</description>
      <pubDate>Tue, 24 Apr 2018 11:13:22 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/lisp-for-make-a-indiviual-group-text-with-line/m-p/7955244#M105774</guid>
      <dc:creator>roland.r71</dc:creator>
      <dc:date>2018-04-24T11:13:22Z</dc:date>
    </item>
    <item>
      <title>Re: LISP FOR MAKE A INDIVIUAL GROUP TEXT WITH LINE</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/lisp-for-make-a-indiviual-group-text-with-line/m-p/7955312#M105775</link>
      <description>&lt;P&gt;Thanks for&amp;nbsp;the reply,&lt;/P&gt;&lt;P&gt;but it only create a underline not create a group of text and polyline. I want a group of selected text and under polyline together.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;for&amp;nbsp;creating underline. I use strikethrough &lt;A title="Strikethrough" href="http://lee-mac.com/strikethrough.html" target="_blank"&gt;http://lee-mac.com/strikethrough.html&lt;/A&gt;&lt;/P&gt;&lt;P&gt;by lee mac.&lt;/P&gt;</description>
      <pubDate>Tue, 24 Apr 2018 11:45:21 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/lisp-for-make-a-indiviual-group-text-with-line/m-p/7955312#M105775</guid>
      <dc:creator>jaggisingh003</dc:creator>
      <dc:date>2018-04-24T11:45:21Z</dc:date>
    </item>
    <item>
      <title>Re: LISP FOR MAKE A INDIVIUAL GROUP TEXT WITH LINE</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/lisp-for-make-a-indiviual-group-text-with-line/m-p/7955580#M105776</link>
      <description>&lt;BLOCKQUOTE&gt;&lt;HR /&gt;&lt;a href="https://forums.autodesk.com/t5/user/viewprofilepage/user-id/3747317"&gt;@jaggisingh003&lt;/a&gt; wrote:&lt;BR /&gt;
&lt;P&gt;....&amp;nbsp;A LISP FOR MAKE A INDIVIUAL GROUP&amp;nbsp; OF TEXT WITH UNDER POLYLINE.&lt;/P&gt;
&lt;HR /&gt;&lt;/BLOCKQUOTE&gt;
&lt;P&gt;Are the Text and Polyline both already drawn?&amp;nbsp;&amp;nbsp;If so, just use the &lt;STRONG&gt;&lt;FONT color="#000000"&gt;GROUP&lt;/FONT&gt;&lt;/STRONG&gt; command, or &lt;STRONG&gt;&lt;FONT color="#000000"&gt;BLOCK&lt;/FONT&gt;&lt;/STRONG&gt; if you prefer.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;If they're not both already drawn, is the &lt;EM&gt;Text&lt;/EM&gt;&amp;nbsp; already drawn as it must be in &lt;a href="https://forums.autodesk.com/t5/user/viewprofilepage/user-id/4682962"&gt;@roland.r71&lt;/a&gt;'s routine?&amp;nbsp;&amp;nbsp;If so,&amp;nbsp;is it always &lt;EM&gt;at a rotation angle of 0&lt;/EM&gt;, as that routine would require it to be?&amp;nbsp; And do you want the underlining Polyline &lt;EM&gt;touching&lt;/EM&gt;&amp;nbsp; the bottom of the Text as that makes it, or should it be slightly farther below?&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;If neither is already drawn, and you want both to be drawn as part of the routine, the same questions apply about rotation and the position of the underlining.&amp;nbsp; And other questions arise:&amp;nbsp; Should it always just use the current Text Style and height and Layer and so on, or should the routine set all of those?&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;In any&amp;nbsp;case, the results can be &lt;STRONG&gt;&lt;FONT color="#000000"&gt;GROUP&lt;/FONT&gt;&lt;/STRONG&gt;ed together easily enough after whatever else the routine does.&lt;/P&gt;</description>
      <pubDate>Tue, 24 Apr 2018 13:12:03 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/lisp-for-make-a-indiviual-group-text-with-line/m-p/7955580#M105776</guid>
      <dc:creator>Kent1Cooper</dc:creator>
      <dc:date>2018-04-24T13:12:03Z</dc:date>
    </item>
    <item>
      <title>Re: LISP FOR MAKE A INDIVIUAL GROUP TEXT WITH LINE</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/lisp-for-make-a-indiviual-group-text-with-line/m-p/7955642#M105777</link>
      <description>&lt;P&gt;As he's using LeeMac's "Strikethrough" for the underlining, the text must already be present.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;So, it looks like all he realy wants to do is group the (existing) text &amp;amp; line. (probably to keep them together)&lt;/P&gt;</description>
      <pubDate>Tue, 24 Apr 2018 13:39:08 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/lisp-for-make-a-indiviual-group-text-with-line/m-p/7955642#M105777</guid>
      <dc:creator>roland.r71</dc:creator>
      <dc:date>2018-04-24T13:39:08Z</dc:date>
    </item>
    <item>
      <title>Re: LISP FOR MAKE A INDIVIUAL GROUP TEXT WITH LINE</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/lisp-for-make-a-indiviual-group-text-with-line/m-p/7955666#M105778</link>
      <description>Yups you r right..&lt;BR /&gt;</description>
      <pubDate>Tue, 24 Apr 2018 13:44:56 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/lisp-for-make-a-indiviual-group-text-with-line/m-p/7955666#M105778</guid>
      <dc:creator>jaggisingh003</dc:creator>
      <dc:date>2018-04-24T13:44:56Z</dc:date>
    </item>
    <item>
      <title>Re: LISP FOR MAKE A INDIVIUAL GROUP TEXT WITH LINE</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/lisp-for-make-a-indiviual-group-text-with-line/m-p/7955690#M105779</link>
      <description>&lt;BLOCKQUOTE&gt;&lt;HR /&gt;&lt;a href="https://forums.autodesk.com/t5/user/viewprofilepage/user-id/3747317"&gt;@jaggisingh003&lt;/a&gt; wrote:&lt;BR /&gt;Yups you r right..&lt;BR /&gt;&lt;HR /&gt;&lt;/BLOCKQUOTE&gt;
&lt;P&gt;Then I don't see any need for an AutoLisp routine.&amp;nbsp; See the beginning of my previous Reply.&lt;/P&gt;</description>
      <pubDate>Tue, 24 Apr 2018 13:53:42 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/lisp-for-make-a-indiviual-group-text-with-line/m-p/7955690#M105779</guid>
      <dc:creator>Kent1Cooper</dc:creator>
      <dc:date>2018-04-24T13:53:42Z</dc:date>
    </item>
    <item>
      <title>Re: LISP FOR MAKE A INDIVIUAL GROUP TEXT WITH LINE</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/lisp-for-make-a-indiviual-group-text-with-line/m-p/7957301#M105780</link>
      <description>&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="ee.PNG" style="width: 999px;"&gt;&lt;img src="https://forums.autodesk.com/t5/image/serverpage/image-id/492869iE3F5298ACAE6EF8D/image-size/large?v=v2&amp;amp;px=999" role="button" title="ee.PNG" alt="ee.PNG" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I have hundreds of text like this, and When I want to move them only text are moving.&lt;/P&gt;&lt;P&gt;if there is&amp;nbsp; a group of text and line they both move at the same time.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 25 Apr 2018 03:41:43 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/lisp-for-make-a-indiviual-group-text-with-line/m-p/7957301#M105780</guid>
      <dc:creator>jaggisingh003</dc:creator>
      <dc:date>2018-04-25T03:41:43Z</dc:date>
    </item>
    <item>
      <title>Re: LISP FOR MAKE A INDIVIUAL GROUP TEXT WITH LINE</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/lisp-for-make-a-indiviual-group-text-with-line/m-p/7958299#M105781</link>
      <description>&lt;P&gt;Is there any way we can do this.&lt;/P&gt;&lt;P&gt;either than group command.&lt;/P&gt;</description>
      <pubDate>Wed, 25 Apr 2018 12:34:25 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/lisp-for-make-a-indiviual-group-text-with-line/m-p/7958299#M105781</guid>
      <dc:creator>jaggisingh003</dc:creator>
      <dc:date>2018-04-25T12:34:25Z</dc:date>
    </item>
    <item>
      <title>Re: LISP FOR MAKE A INDIVIUAL GROUP TEXT WITH LINE</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/lisp-for-make-a-indiviual-group-text-with-line/m-p/7958461#M105782</link>
      <description>&lt;P&gt;I understand your problem, but know of no quick solution.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;For this i would not advice to use "group", as that would require you to "ungroup" &amp;amp; re-"group" each time you need to change the text.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;You (or somebody else) could write a script to do the grouping, automatically, but in the time i write that, you could make the changes by hand. (looking at your drawing, it will require some thought (&amp;amp; coding) on how to select the right line to go with each text)&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;IMHO: For this it would be better to start over, using a block (or a dynamic block, to allow stretching the line if needed)&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 25 Apr 2018 13:25:34 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/lisp-for-make-a-indiviual-group-text-with-line/m-p/7958461#M105782</guid>
      <dc:creator>roland.r71</dc:creator>
      <dc:date>2018-04-25T13:25:34Z</dc:date>
    </item>
    <item>
      <title>Re: LISP FOR MAKE A INDIVIUAL GROUP TEXT WITH LINE</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/lisp-for-make-a-indiviual-group-text-with-line/m-p/7958648#M105783</link>
      <description>&lt;P&gt;&lt;a href="https://forums.autodesk.com/t5/user/viewprofilepage/user-id/3747317"&gt;@jaggisingh003&lt;/a&gt;&lt;/P&gt;
&lt;P&gt;If you really want to use Groups:&lt;/P&gt;
&lt;P&gt;Is it a problem for you to create the line new? In this case an for the next:&lt;/P&gt;
&lt;P&gt;Save your LM-Lisp under a new name, like StrikeThroughV1-1_Group.lsp&lt;/P&gt;
&lt;P&gt;Perhaps it is better to rename the defined Autocad commands too:&lt;/P&gt;
&lt;P&gt;C:STRIKE =&amp;gt; C:STRIKE_GR&lt;/P&gt;
&lt;P&gt;and all others "C:" too.&lt;/P&gt;
&lt;P&gt;And above the last (princ) for each (defun c:&amp;nbsp; you should add this line as reminder:&lt;/P&gt;
&lt;P&gt;(if (/= (logand (getvar 'pickstyle) 1) 1) (alert "Note: Your PICKSTYLE GROUP is current switched off!"))&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Then change the last line of (defun LM:strikethrough&lt;/P&gt;
&lt;P&gt;from&lt;/P&gt;
&lt;P&gt;rtn&lt;/P&gt;
&lt;P&gt;to&lt;/P&gt;
&lt;P&gt;(command "_.GROUP" "_create" "*" "" ent (foreach i rtn i) "")&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 25 Apr 2018 14:05:17 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/lisp-for-make-a-indiviual-group-text-with-line/m-p/7958648#M105783</guid>
      <dc:creator>cadffm</dc:creator>
      <dc:date>2018-04-25T14:05:17Z</dc:date>
    </item>
    <item>
      <title>Re: LISP FOR MAKE A INDIVIUAL GROUP TEXT WITH LINE</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/lisp-for-make-a-indiviual-group-text-with-line/m-p/7960529#M105784</link>
      <description>&lt;P&gt;It is highly appreciable for the code provided by you.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks for the kind &amp;amp; quick reply.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 26 Apr 2018 04:02:11 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/lisp-for-make-a-indiviual-group-text-with-line/m-p/7960529#M105784</guid>
      <dc:creator>jaggisingh003</dc:creator>
      <dc:date>2018-04-26T04:02:11Z</dc:date>
    </item>
  </channel>
</rss>

