kite15
882 Views, 5 Replies

How to remove multiple FabCADmep text

Hi,

I have tried to remove multiple Fabrication CADmep text by using 'REMOVETEXT' command.

However, there was not any option by default in Fabrication CADmep. Now I am trying to create a tool to achieve this and unable to. Here is my code, please help if anyone familiar with Fabrication CADmep tool development using .Net C#

 

                            using (transaction)
                            {
                                ObjectId[] validblkID = new ObjectId[objectIds.Count];
                                objectIds.CopyTo(validblkID, 0);
                                editor.SetImpliedSelection(validblkID);
                                transaction.Commit();
                            }
                            Application.DocumentManager.MdiActiveDocument.SendStringToExecute("EXPLODETEXT \n", true, false, false);   

 Please, suggest how to remove multiple Fabrication CADmep text by single action.

Optionally, suggest on the code or Autolisp to get this feature.

Thanks in advance:face_with_rolling_eyes: