<?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: VisualLisp Command to Get/Put Rotation on MLeader in Visual LISP, AutoLISP and General Customization Forum</title>
    <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/visuallisp-command-to-get-put-rotation-on-mleader/m-p/7428422#M113993</link>
    <description>&lt;BLOCKQUOTE&gt;&lt;HR /&gt;&lt;a href="https://forums.autodesk.com/t5/user/viewprofilepage/user-id/3111366"&gt;@ebsoares&lt;/a&gt; wrote:&lt;BR /&gt;
&lt;P&gt;....&amp;nbsp;is it also possible to first "read" the current mleader's rotation value, to then add the new angle to it? .....&lt;/P&gt;
&lt;HR /&gt;&lt;/BLOCKQUOTE&gt;
&lt;P&gt;Yes. See below edit. Also note that I was using getreal but getangle is a better option as suggested by &lt;a href="https://forums.autodesk.com/t5/user/viewprofilepage/user-id/411413"&gt;@dbroad&lt;/a&gt;'s post&lt;/P&gt;
&lt;PRE&gt;(defun c:somefunc  (/ ss1 rot)
 (setq ss1 (ssget '((0 . "multileader"))))
 (and ss1
      (setq rot (getangle "\nSpecify new rotation value: "))
      (mapcar '(lambda (x) (setpropertyvalue x "MText/Rotation" (+ (getpropertyvalue x "MText/Rotation") rot)))
              (vl-remove-if 'listp (mapcar 'cadr (ssnamex ss1)))))
 (princ))&lt;/PRE&gt;</description>
    <pubDate>Tue, 03 Oct 2017 14:36:46 GMT</pubDate>
    <dc:creator>Ranjit_Singh</dc:creator>
    <dc:date>2017-10-03T14:36:46Z</dc:date>
    <item>
      <title>VisualLisp Command to Get/Put Rotation on MLeader</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/visuallisp-command-to-get-put-rotation-on-mleader/m-p/7426288#M113986</link>
      <description>&lt;P&gt;Hi, all.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;From what I understand,&amp;nbsp;&lt;EM&gt;vla-&lt;STRONG&gt;get&lt;/STRONG&gt;-rotation&lt;/EM&gt; and&amp;nbsp;&lt;EM&gt;vla-&lt;STRONG&gt;put&lt;/STRONG&gt;-rotation&lt;/EM&gt; respectively read and write the "rotation" property of blocks, text, and mtext. But for some reason it does not work for MLeaders...&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I'm looking for the &lt;EM&gt;&lt;STRONG&gt;vla-*&lt;/STRONG&gt;&lt;/EM&gt; code (if it exists) that can change the rotation property of MLeaders.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Any tip is highly appreciated.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Edgar&lt;/P&gt;</description>
      <pubDate>Mon, 02 Oct 2017 19:03:49 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/visuallisp-command-to-get-put-rotation-on-mleader/m-p/7426288#M113986</guid>
      <dc:creator>ebsoares</dc:creator>
      <dc:date>2017-10-02T19:03:49Z</dc:date>
    </item>
    <item>
      <title>Re: VisualLisp Command to Get/Put Rotation on MLeader</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/visuallisp-command-to-get-put-rotation-on-mleader/m-p/7426386#M113987</link>
      <description>&lt;P&gt;When you work with vla- methods, you need to access the available properties of the object.&amp;nbsp; There is no rotation property for multileaders. There is, however, a textrotation property.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Use (vlax-dump-object&amp;nbsp; &amp;lt;mleaderobject&amp;gt; T) to find out a list of properties and methods.&amp;nbsp; Use vlax-property-available-P to determine whether a property exists.&lt;/P&gt;</description>
      <pubDate>Mon, 02 Oct 2017 19:40:16 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/visuallisp-command-to-get-put-rotation-on-mleader/m-p/7426386#M113987</guid>
      <dc:creator>dbroad</dc:creator>
      <dc:date>2017-10-02T19:40:16Z</dc:date>
    </item>
    <item>
      <title>Re: VisualLisp Command to Get/Put Rotation on MLeader</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/visuallisp-command-to-get-put-rotation-on-mleader/m-p/7426428#M113988</link>
      <description>&lt;P&gt;Thanks for the quick reply, Doug.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I'm new to visual lisps (very new), so I'm not sure how to do what I need with that info.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;How would you go about changing the text rotation property of a selection of multileaders using a Lisp routine (with basic Lisp code or VLA)?&lt;/P&gt;</description>
      <pubDate>Mon, 02 Oct 2017 19:58:11 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/visuallisp-command-to-get-put-rotation-on-mleader/m-p/7426428#M113988</guid>
      <dc:creator>ebsoares</dc:creator>
      <dc:date>2017-10-02T19:58:11Z</dc:date>
    </item>
    <item>
      <title>Re: VisualLisp Command to Get/Put Rotation on MLeader</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/visuallisp-command-to-get-put-rotation-on-mleader/m-p/7426586#M113989</link>
      <description>&lt;P&gt;Try something like this as a starting point&lt;/P&gt;
&lt;PRE&gt;(defun c:somefunc  (/ ss1 rot)
 (setq ss1 (ssget '((0 . "multileader"))))
 (and ss1
      (setq rot (getreal "\nSpecify new rotation value: "))
      (mapcar '(lambda (x) (setpropertyvalue x "MText/Rotation" rot))
              (vl-remove-if 'listp (mapcar 'cadr (ssnamex ss1)))))
 (princ))&lt;/PRE&gt;</description>
      <pubDate>Mon, 02 Oct 2017 20:54:04 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/visuallisp-command-to-get-put-rotation-on-mleader/m-p/7426586#M113989</guid>
      <dc:creator>Ranjit_Singh</dc:creator>
      <dc:date>2017-10-02T20:54:04Z</dc:date>
    </item>
    <item>
      <title>Re: VisualLisp Command to Get/Put Rotation on MLeader</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/visuallisp-command-to-get-put-rotation-on-mleader/m-p/7426871#M113990</link>
      <description>&lt;P&gt;&lt;a href="https://forums.autodesk.com/t5/user/viewprofilepage/user-id/3261555"&gt;@Ranjit_Singh&lt;/a&gt;&amp;nbsp;wrote a nice one.&amp;nbsp; This is another approach:&lt;/P&gt;
&lt;PRE&gt;(defun c:mltr ( / rot )
  (setq rot (getangle "\nNew leader text rotation angle:"))
  (prompt "nSelect leaders: ")
  (if (ssget '((0 . "MULTILEADER")))
  (vlax-for n (vla-get-activeselectionset
		(vla-get-activedocument
		  (vlax-get-acad-object)))
    (vla-put-textrotation n rot)
    )
    )
  (princ)
  )
&lt;/PRE&gt;
&lt;P&gt;With the properties palette, these things are relatively quick to accomplish without programming.&lt;/P&gt;</description>
      <pubDate>Mon, 02 Oct 2017 23:12:28 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/visuallisp-command-to-get-put-rotation-on-mleader/m-p/7426871#M113990</guid>
      <dc:creator>dbroad</dc:creator>
      <dc:date>2017-10-02T23:12:28Z</dc:date>
    </item>
    <item>
      <title>Re: VisualLisp Command to Get/Put Rotation on MLeader</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/visuallisp-command-to-get-put-rotation-on-mleader/m-p/7426911#M113991</link>
      <description>&lt;P&gt;Hi, Ranjit! To the rescue again - Thanks! &lt;img id="smileyhappy" class="emoticon emoticon-smileyhappy" src="https://forums.autodesk.com/i/smilies/16x16_smiley-happy.png" alt="Smiley Happy" title="Smiley Happy" /&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;The routine you wrote works, but is it also possible to first "read" the current mleader's rotation value, to then add the new angle to it? And to do so to each mleader in the selection set?&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;For example,&amp;nbsp;suppose we select two mleaders, one with a&amp;nbsp;0 degree rotation and another with 45 degree rotation, then we chose to add an angle of 20 degrees to them, so the first mleader's rotation becomes 20 degrees (0+20) and the second becomes 65 degrees (45+20).&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;By the way, I got the idea from Lee Mac's reply to this post, &lt;A title="Opens in new page" href="http://www.cadtutor.net/forum/archive/index.php/t-54913.html?s=c3cca273e3b36cf1f8eb0282e4f97e2e" target="_blank"&gt;Rotate multiple blocks around their individual origin point&lt;/A&gt;, which does exactly that, but does not work with mleaders (only blocks, texts, and mtexts)...&lt;/P&gt;</description>
      <pubDate>Mon, 02 Oct 2017 23:42:05 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/visuallisp-command-to-get-put-rotation-on-mleader/m-p/7426911#M113991</guid>
      <dc:creator>ebsoares</dc:creator>
      <dc:date>2017-10-02T23:42:05Z</dc:date>
    </item>
    <item>
      <title>Re: VisualLisp Command to Get/Put Rotation on MLeader</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/visuallisp-command-to-get-put-rotation-on-mleader/m-p/7427980#M113992</link>
      <description>&lt;PRE&gt;(defun c:cmltr ( / rot )
  (setq rot (getangle "\nChange rotation by what angle?:"))
  (prompt "nSelect leaders: ")
  (if (ssget '((0 . "MULTILEADER")))
  (vlax-for n (vla-get-activeselectionset
		(vla-get-activedocument
		  (vlax-get-acad-object)))
    (vla-put-textrotation n (+ (vla-get-textrotation n) rot))
    )
    )
  (princ)
  )&lt;/PRE&gt;</description>
      <pubDate>Tue, 03 Oct 2017 12:24:54 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/visuallisp-command-to-get-put-rotation-on-mleader/m-p/7427980#M113992</guid>
      <dc:creator>dbroad</dc:creator>
      <dc:date>2017-10-03T12:24:54Z</dc:date>
    </item>
    <item>
      <title>Re: VisualLisp Command to Get/Put Rotation on MLeader</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/visuallisp-command-to-get-put-rotation-on-mleader/m-p/7428422#M113993</link>
      <description>&lt;BLOCKQUOTE&gt;&lt;HR /&gt;&lt;a href="https://forums.autodesk.com/t5/user/viewprofilepage/user-id/3111366"&gt;@ebsoares&lt;/a&gt; wrote:&lt;BR /&gt;
&lt;P&gt;....&amp;nbsp;is it also possible to first "read" the current mleader's rotation value, to then add the new angle to it? .....&lt;/P&gt;
&lt;HR /&gt;&lt;/BLOCKQUOTE&gt;
&lt;P&gt;Yes. See below edit. Also note that I was using getreal but getangle is a better option as suggested by &lt;a href="https://forums.autodesk.com/t5/user/viewprofilepage/user-id/411413"&gt;@dbroad&lt;/a&gt;'s post&lt;/P&gt;
&lt;PRE&gt;(defun c:somefunc  (/ ss1 rot)
 (setq ss1 (ssget '((0 . "multileader"))))
 (and ss1
      (setq rot (getangle "\nSpecify new rotation value: "))
      (mapcar '(lambda (x) (setpropertyvalue x "MText/Rotation" (+ (getpropertyvalue x "MText/Rotation") rot)))
              (vl-remove-if 'listp (mapcar 'cadr (ssnamex ss1)))))
 (princ))&lt;/PRE&gt;</description>
      <pubDate>Tue, 03 Oct 2017 14:36:46 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/visuallisp-command-to-get-put-rotation-on-mleader/m-p/7428422#M113993</guid>
      <dc:creator>Ranjit_Singh</dc:creator>
      <dc:date>2017-10-03T14:36:46Z</dc:date>
    </item>
    <item>
      <title>Re: VisualLisp Command to Get/Put Rotation on MLeader</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/visuallisp-command-to-get-put-rotation-on-mleader/m-p/7428585#M113994</link>
      <description>&lt;P&gt;Wow, two great solutions for the price of one!&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;a href="https://forums.autodesk.com/t5/user/viewprofilepage/user-id/411413"&gt;@dbroad&lt;/a&gt; and &lt;a href="https://forums.autodesk.com/t5/user/viewprofilepage/user-id/3261555"&gt;@Ranjit_Singh&lt;/a&gt;, you rock!&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I really appreciate your help - both solutions do exactly what I'd hope for&amp;nbsp;&lt;img id="smileyhappy" class="emoticon emoticon-smileyhappy" src="https://forums.autodesk.com/i/smilies/16x16_smiley-happy.png" alt="Smiley Happy" title="Smiley Happy" /&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Again, thank you so much!&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Edgar&lt;/P&gt;</description>
      <pubDate>Tue, 03 Oct 2017 15:14:54 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/visuallisp-command-to-get-put-rotation-on-mleader/m-p/7428585#M113994</guid>
      <dc:creator>ebsoares</dc:creator>
      <dc:date>2017-10-03T15:14:54Z</dc:date>
    </item>
    <item>
      <title>Re: VisualLisp Command to Get/Put Rotation on MLeader</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/visuallisp-command-to-get-put-rotation-on-mleader/m-p/7428977#M113995</link>
      <description>&lt;P&gt;You're welcome. Now open up vlide and start experimenting on your own.&lt;/P&gt;</description>
      <pubDate>Tue, 03 Oct 2017 17:12:48 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/visuallisp-command-to-get-put-rotation-on-mleader/m-p/7428977#M113995</guid>
      <dc:creator>dbroad</dc:creator>
      <dc:date>2017-10-03T17:12:48Z</dc:date>
    </item>
    <item>
      <title>Re: VisualLisp Command to Get/Put Rotation on MLeader</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/visuallisp-command-to-get-put-rotation-on-mleader/m-p/10620863#M113996</link>
      <description>&lt;BLOCKQUOTE&gt;&lt;HR /&gt;&lt;a href="https://forums.autodesk.com/t5/user/viewprofilepage/user-id/411413"&gt;@dbroad&lt;/a&gt;&amp;nbsp; написал (-а):&lt;P class="1631612021678"&gt;&amp;nbsp;&lt;/P&gt;With the properties palette, these things are relatively quick to accomplish without programming.&lt;HR /&gt;&lt;/BLOCKQUOTE&gt;&lt;P&gt;So, is it possible to do the same, but without changing text position? Rotate not by leader point, but by the center of the text.&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;</description>
      <pubDate>Tue, 14 Sep 2021 09:29:00 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/visuallisp-command-to-get-put-rotation-on-mleader/m-p/10620863#M113996</guid>
      <dc:creator>wepp</dc:creator>
      <dc:date>2021-09-14T09:29:00Z</dc:date>
    </item>
    <item>
      <title>Re: VisualLisp Command to Get/Put Rotation on MLeader</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/visuallisp-command-to-get-put-rotation-on-mleader/m-p/10621258#M113997</link>
      <description>&lt;P&gt;Not with the properties palette.&amp;nbsp; Is that imporant?&amp;nbsp; It isn't for me.&amp;nbsp; If I have to rotate the mleader, chances are I will have to adjust its position and size.&amp;nbsp; Grips do that fine. Where a hook line exists, it rotates it about that.&lt;/P&gt;</description>
      <pubDate>Tue, 14 Sep 2021 12:14:32 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/visuallisp-command-to-get-put-rotation-on-mleader/m-p/10621258#M113997</guid>
      <dc:creator>dbroad</dc:creator>
      <dc:date>2021-09-14T12:14:32Z</dc:date>
    </item>
    <item>
      <title>Re: VisualLisp Command to Get/Put Rotation on MLeader</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/visuallisp-command-to-get-put-rotation-on-mleader/m-p/10621286#M113998</link>
      <description>&lt;BLOCKQUOTE&gt;&lt;HR /&gt;&lt;a href="https://forums.autodesk.com/t5/user/viewprofilepage/user-id/411413"&gt;@dbroad&lt;/a&gt;&amp;nbsp; написал (-а):&lt;BR /&gt;&lt;P&gt;&amp;nbsp;If I have to rotate the mleader,&lt;/P&gt;&lt;HR /&gt;&lt;/BLOCKQUOTE&gt;&lt;P&gt;I've rotated whole drawing by 180 degree. So I only need rotate text the same degree. Of course, I've done it manually, but for the future .. For text and mtext there is &lt;STRONG&gt;TORIENT&lt;/STRONG&gt; with "most readable" option.&lt;/P&gt;</description>
      <pubDate>Tue, 14 Sep 2021 12:24:38 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/visuallisp-command-to-get-put-rotation-on-mleader/m-p/10621286#M113998</guid>
      <dc:creator>wepp</dc:creator>
      <dc:date>2021-09-14T12:24:38Z</dc:date>
    </item>
    <item>
      <title>Re: VisualLisp Command to Get/Put Rotation on MLeader</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/visuallisp-command-to-get-put-rotation-on-mleader/m-p/10624243#M113999</link>
      <description>&lt;P&gt;Not for mleaders, AFAIK.&amp;nbsp; TORIENT is an express tool.&amp;nbsp; I can't imagine that you are going to need to rotate drawings 180 degrees very often. If so, you should probably rethink your workflow.&amp;nbsp; qselect will allow you to select all mleaders at one time and then set the rotation.&amp;nbsp; You can even filter for the rotations and set only the rotations that aren't readable. IMO, it isn't work hacking together a command to extend torient to mleaders. If you want to write one yourself, the torient code can be found in the express folder in the&amp;nbsp;acettxt.lsp file. I doubt Autodesk would complain about you adapting torient.&lt;/P&gt;</description>
      <pubDate>Wed, 15 Sep 2021 13:32:54 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/visuallisp-command-to-get-put-rotation-on-mleader/m-p/10624243#M113999</guid>
      <dc:creator>dbroad</dc:creator>
      <dc:date>2021-09-15T13:32:54Z</dc:date>
    </item>
    <item>
      <title>Re: VisualLisp Command to Get/Put Rotation on MLeader</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/visuallisp-command-to-get-put-rotation-on-mleader/m-p/10825661#M114000</link>
      <description>&lt;P&gt;Can the lisp routine you wrote be modified to work on multileaders using an imbedded block (keynote or detail bubble).&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Your lisp ignores keynote type multileaders.&lt;BR /&gt;&lt;BR /&gt;Thanks&lt;/P&gt;&lt;P&gt;T&lt;/P&gt;</description>
      <pubDate>Wed, 15 Dec 2021 21:04:46 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/visuallisp-command-to-get-put-rotation-on-mleader/m-p/10825661#M114000</guid>
      <dc:creator>tjewell</dc:creator>
      <dc:date>2021-12-15T21:04:46Z</dc:date>
    </item>
    <item>
      <title>Re: VisualLisp Command to Get/Put Rotation on MLeader</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/visuallisp-command-to-get-put-rotation-on-mleader/m-p/10825755#M114001</link>
      <description>&lt;P&gt;What lisp program?&lt;/P&gt;</description>
      <pubDate>Wed, 15 Dec 2021 21:49:08 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/visuallisp-command-to-get-put-rotation-on-mleader/m-p/10825755#M114001</guid>
      <dc:creator>dbroad</dc:creator>
      <dc:date>2021-12-15T21:49:08Z</dc:date>
    </item>
    <item>
      <title>Re: VisualLisp Command to Get/Put Rotation on MLeader</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/visuallisp-command-to-get-put-rotation-on-mleader/m-p/10825775#M114002</link>
      <description>&lt;PRE&gt;(defun c:cmltr ( / rot )
  (setq rot (getangle "\nChange rotation by what angle?:"))
  (prompt "nSelect leaders: ")
  (if (ssget '((0 . "MULTILEADER")))
  (vlax-for n (vla-get-activeselectionset
		(vla-get-activedocument
		  (vlax-get-acad-object)))
    (vla-put-textrotation n (+ (vla-get-textrotation n) rot))
    )
    )
  (princ)
  )&lt;/PRE&gt;</description>
      <pubDate>Wed, 15 Dec 2021 21:58:23 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/visuallisp-command-to-get-put-rotation-on-mleader/m-p/10825775#M114002</guid>
      <dc:creator>tjewell</dc:creator>
      <dc:date>2021-12-15T21:58:23Z</dc:date>
    </item>
    <item>
      <title>Re: VisualLisp Command to Get/Put Rotation on MLeader</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/visuallisp-command-to-get-put-rotation-on-mleader/m-p/10826910#M114003</link>
      <description>&lt;P&gt;No. I showed the easy method for text leaders.&amp;nbsp; For block content leaders, it's more complicated.&amp;nbsp; Luckily a very smart and determined guy showed the way.&amp;nbsp; See this post:&lt;/P&gt;
&lt;P&gt;&lt;A href="https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/block-mleader-rotate-an-existing-mleader/m-p/6498043/highlight/true#M343785" target="_blank" rel="noopener"&gt;https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/block-mleader-rotate-an-existing-mleader/m-p/6498043/highlight/true#M343785&lt;/A&gt;&lt;/P&gt;</description>
      <pubDate>Thu, 16 Dec 2021 12:56:53 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/visuallisp-command-to-get-put-rotation-on-mleader/m-p/10826910#M114003</guid>
      <dc:creator>dbroad</dc:creator>
      <dc:date>2021-12-16T12:56:53Z</dc:date>
    </item>
    <item>
      <title>Re: VisualLisp Command to Get/Put Rotation on MLeader</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/visuallisp-command-to-get-put-rotation-on-mleader/m-p/10828206#M114004</link>
      <description>&lt;P&gt;dbroad,&lt;/P&gt;&lt;P&gt;I really appreciate your help, that lisp worked wonderfully.&lt;/P&gt;&lt;P&gt;Manually rotating hundreds of keynotes is a enormous pain.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thank you for taking the time to hunt down a solution to my problem.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks again,&lt;/P&gt;&lt;P&gt;Tim Jewell&lt;/P&gt;</description>
      <pubDate>Thu, 16 Dec 2021 23:37:41 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/visuallisp-command-to-get-put-rotation-on-mleader/m-p/10828206#M114004</guid>
      <dc:creator>tjewell</dc:creator>
      <dc:date>2021-12-16T23:37:41Z</dc:date>
    </item>
    <item>
      <title>Re: VisualLisp Command to Get/Put Rotation on MLeader</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/visuallisp-command-to-get-put-rotation-on-mleader/m-p/12608785#M114005</link>
      <description>&lt;P&gt;Hi it is helped me lot. but i want text rotation value zero directly without typing value in lisp&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Sun, 03 Mar 2024 03:51:27 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/visuallisp-command-to-get-put-rotation-on-mleader/m-p/12608785#M114005</guid>
      <dc:creator>kommu_aseervadam</dc:creator>
      <dc:date>2024-03-03T03:51:27Z</dc:date>
    </item>
  </channel>
</rss>

