03-22-2022
10:45 PM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report
03-22-2022
10:45 PM
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![]()
Solved! Go to Solution.