Author Topic: [XDrX-PlugIn(12)] Detach Mleader Arrow  (Read 1070 times)

0 Members and 1 Guest are viewing this topic.

xdcad

  • Swamp Rat
  • Posts: 522
[XDrX-PlugIn(12)] Detach Mleader Arrow
« on: November 27, 2023, 07:52:54 PM »
Code - Auto/Visual Lisp: [Select]
  1. (defun c:tt ()
  2.   (if (setq ss (xdrx-ssget
  3.                  "\nSelect the Mleader to Detach the arrow<Quit>:"
  4.                  '((0 . "MULTILEADER"))
  5.                )
  6.       )
  7.     (progn
  8.       (xdrx-begin)
  9.       (xdrx-setpropertyvalue ss "ArrowSymbolId" nil "ArrowSize" 0.0)
  10.       (xdrx-end)
  11.     )
  12.   )
  13.   (princ)
  14. )
« Last Edit: November 27, 2023, 07:56:42 PM by xdcad »
The code I wrote uses XDRX-API,which can be downloaded from github.com and is updated at any time.
===================================
https://github.com/xdcad
https://sourceforge.net/projects/xdrx-api-zip/
http://bbs.xdcad.net

jrr114

  • Newt
  • Posts: 21
Re: [XDrX-PlugIn(12)] Detach Mleader Arrow
« Reply #1 on: January 02, 2024, 02:28:17 PM »
Thanks xdcad,
I thought I thanked you before but  now see that it didn't go through.
Happy New Year.