Edit Table Cell

this may work on attributes as well

 

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)
    )

This discussion has been closed.