<?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: modify dimension text from base point to selected point in Visual LISP, AutoLISP and General Customization Forum</title>
    <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/modify-dimension-text-from-base-point-to-selected-point/m-p/9042045#M83902</link>
    <description>&lt;P&gt;thanks for reply sir&lt;/P&gt;</description>
    <pubDate>Tue, 24 Sep 2019 04:18:54 GMT</pubDate>
    <dc:creator>Anonymous</dc:creator>
    <dc:date>2019-09-24T04:18:54Z</dc:date>
    <item>
      <title>modify dimension text from base point to selected point</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/modify-dimension-text-from-base-point-to-selected-point/m-p/9040612#M83897</link>
      <description>&lt;P&gt;modify dimension text from base point to selected point. Its not work with entmod and entupd functions.&lt;/P&gt;</description>
      <pubDate>Mon, 23 Sep 2019 13:45:44 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/modify-dimension-text-from-base-point-to-selected-point/m-p/9040612#M83897</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2019-09-23T13:45:44Z</dc:date>
    </item>
    <item>
      <title>Re: modify dimension text from base point to selected point</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/modify-dimension-text-from-base-point-to-selected-point/m-p/9040890#M83898</link>
      <description>&lt;BLOCKQUOTE&gt;&lt;HR /&gt;@Anonymous&amp;nbsp;wrote:&lt;BR /&gt;
&lt;P&gt;modify dimension text from base point to selected point. Its not work with entmod and entupd functions.&lt;/P&gt;
&lt;HR /&gt;&lt;/BLOCKQUOTE&gt;
&lt;P&gt;&lt;BR /&gt;I can't explain why the &lt;FONT color="#000000"&gt;(entmod (subst ...))&lt;/FONT&gt; approach doesn't work, but I find in minimal testing that &lt;EM&gt;VLA Properties&lt;/EM&gt;&amp;nbsp; can be used to do it:&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;
&lt;P&gt;&lt;FONT color="#000000"&gt;(vlax-put&lt;/FONT&gt; &lt;FONT color="#00CCFF"&gt;DimensionAsVLAObject&lt;/FONT&gt; &lt;FONT color="#000000"&gt;'textposition&lt;/FONT&gt; &lt;FONT color="#00CCFF"&gt;YourNewPointCoordinatesList&lt;/FONT&gt;&lt;FONT color="#000000"&gt;)&lt;/FONT&gt;&lt;/P&gt;</description>
      <pubDate>Mon, 23 Sep 2019 15:27:03 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/modify-dimension-text-from-base-point-to-selected-point/m-p/9040890#M83898</guid>
      <dc:creator>Kent1Cooper</dc:creator>
      <dc:date>2019-09-23T15:27:03Z</dc:date>
    </item>
    <item>
      <title>Re: modify dimension text from base point to selected point</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/modify-dimension-text-from-base-point-to-selected-point/m-p/9041881#M83899</link>
      <description>&lt;P&gt;Maybe you aren't using the proper DXF code.&amp;nbsp; I know that I have used entmod to modify dimension entities.&lt;/P&gt;
&lt;P&gt;I suggest that you create a dimension, copy it in place, relocate the text, and compare the two (entget)s for differences&lt;/P&gt;
&lt;P&gt;Here's a little helper...&lt;/P&gt;
&lt;PRE&gt;(defun c:Entget ( / e)
  (if (setq e (car (entsel "\nSelect object to list entity data: ")))
    (print (entget e))
  )
  (princ)
)
or, if you want to see one dxf code per line, then...
(defun c:Entget ( / e)
  (if (setq e (car (entsel "\nSelect object to list entity data: ")))
    (mapcar 'print (entget e))
  )
  (princ)
)&lt;/PRE&gt;</description>
      <pubDate>Tue, 24 Sep 2019 00:04:24 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/modify-dimension-text-from-base-point-to-selected-point/m-p/9041881#M83899</guid>
      <dc:creator>john.uhden</dc:creator>
      <dc:date>2019-09-24T00:04:24Z</dc:date>
    </item>
    <item>
      <title>Re: modify dimension text from base point to selected point</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/modify-dimension-text-from-base-point-to-selected-point/m-p/9042039#M83900</link>
      <description>&lt;P&gt;I am putting proper value in dxf code 11 which is text position.&lt;/P&gt;</description>
      <pubDate>Tue, 24 Sep 2019 04:08:25 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/modify-dimension-text-from-base-point-to-selected-point/m-p/9042039#M83900</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2019-09-24T04:08:25Z</dc:date>
    </item>
    <item>
      <title>Re: modify dimension text from base point to selected point</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/modify-dimension-text-from-base-point-to-selected-point/m-p/9042043#M83901</link>
      <description>&lt;P&gt;Thanks its Working properly for me&lt;/P&gt;</description>
      <pubDate>Tue, 24 Sep 2019 04:18:28 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/modify-dimension-text-from-base-point-to-selected-point/m-p/9042043#M83901</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2019-09-24T04:18:28Z</dc:date>
    </item>
    <item>
      <title>Re: modify dimension text from base point to selected point</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/modify-dimension-text-from-base-point-to-selected-point/m-p/9042045#M83902</link>
      <description>&lt;P&gt;thanks for reply sir&lt;/P&gt;</description>
      <pubDate>Tue, 24 Sep 2019 04:18:54 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/modify-dimension-text-from-base-point-to-selected-point/m-p/9042045#M83902</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2019-09-24T04:18:54Z</dc:date>
    </item>
    <item>
      <title>Re: modify dimension text from base point to selected point</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/modify-dimension-text-from-base-point-to-selected-point/m-p/9042055#M83903</link>
      <description>&lt;P&gt;Another approach.......&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;FONT color="#000000"&gt;(vlax-put-property&lt;/FONT&gt;&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;FONT color="#3366FF"&gt;DimensionAsVLAObject&lt;/FONT&gt;&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;FONT color="#000000"&gt;'textposition&lt;/FONT&gt;&lt;FONT color="#3366FF"&gt;&lt;SPAN&gt; ActiveX-compatible (variant) 3D point structure&lt;/SPAN&gt;&lt;/FONT&gt;&lt;FONT color="#000000"&gt;)&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;PRE&gt;(vlax-put-property (vlax-ename-&amp;gt;vla-object (car(entsel "\nSelect Dimension: "))) 'textposition (vlax-3d-point (getpoint "\nPick Text position: ")))&lt;/PRE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;@Anonymous&amp;nbsp; you wrote "&lt;FONT color="#0000FF"&gt;I am putting proper value in dxf code 11 which is text position.&lt;/FONT&gt;"&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;It works only for "Linear" Dimension for other Dimensions you have to control dxf code 10 also......&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 24 Sep 2019 04:47:19 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/modify-dimension-text-from-base-point-to-selected-point/m-p/9042055#M83903</guid>
      <dc:creator>dbhunia</dc:creator>
      <dc:date>2019-09-24T04:47:19Z</dc:date>
    </item>
  </channel>
</rss>

