Edit Table Cell
Comments
-
oops
(defun c:cedit ( / activedocument iacadapplication o)
(setq IAcadApplication (vlax-get-acad-object)
ActiveDocument (vla-get-ActiveDocument IAcadApplication)
)
(vla-put-TextString
(vlax-ename->vla-object(car(nentsel "\nSelect Cell Text: ")))
(getstring T "\nEnter New String: "))
(vla-Regen ActiveDocument acActiveViewport)
)0
This discussion has been closed.