Remove block and its entities from drawing
Moderators: SDS, support, admin
-
- Posts: 22
- Joined: 06 Jul 2018, 10:52
Remove block and its entities from drawing
Hello Support,
I'd like to remove an insert from the drawing. When using
Drawing.RemoveEntity
on the insert it is removed.
There is a block within the insert, this block seems to be left. How can I delete the block and all its entities?
Drawing.RemoveEntity doesn't seem to work with blocks and returns false. The same happens with the entities within the block.
I'd like to remove an insert from the drawing. When using
Drawing.RemoveEntity
on the insert it is removed.
There is a block within the insert, this block seems to be left. How can I delete the block and all its entities?
Drawing.RemoveEntity doesn't seem to work with blocks and returns false. The same happens with the entities within the block.
Re: Remove block and its entities from drawing
Hello Stefan,
AutoCAD drawing files use different sections to store blocks and entities: BLOCKS and ENTITIES, respectively. To remove a block from drawing, you need to access the BLOCKS section and remove the CADBlock object from there. If you know the block name, it can be done by a single line of code:
Please note that CADInsert entities refer to block(s), so they should be removed before deleting a block.
Mikhail
AutoCAD drawing files use different sections to store blocks and entities: BLOCKS and ENTITIES, respectively. To remove a block from drawing, you need to access the BLOCKS section and remove the CADBlock object from there. If you know the block name, it can be done by a single line of code:
Code: Select all
drawing.Converter.GetSection(FaceModule.ConvSection.Blocks).RemoveEntityByName("Block1");
Mikhail
Technical Support E-mail: support@cadsofttools.com
Chat support on Skype: cadsofttools.support
Chat support on Skype: cadsofttools.support
-
- Posts: 22
- Joined: 06 Jul 2018, 10:52
Re: Remove block and its entities from drawing
Hello Makhail,
thank you for your help. I guess the other entities within a block (in my case a ployline) should also be removed before removing the block. Trying to remove them always returns false:
When should those entities be removed?
Thank you!
thank you for your help. I guess the other entities within a block (in my case a ployline) should also be removed before removing the block. Trying to remove them always returns false:
Code: Select all
If Not DeleteEntity(Insert) Then
Stop
End If
For Each Entity As rthCadEntity In Insert.Block.Entities
If Not DeleteEntity(Entity) Then
Stop
End If
Next
If Not DeleteBlock(Insert.Block) Then
Stop
End If
Thank you!
Re: Remove block and its entities from drawing
Hello Stefan,
The following call removes a CADBlock and all child entities from the BLOCKS section:
Please try the following code:
Mikhail
The following call removes a CADBlock and all child entities from the BLOCKS section:
Code: Select all
drawing.Converter.GetSection(FaceModule.ConvSection.Blocks).RemoveEntityByName("Block1");
Code: Select all
using System.Collections.Generic;
using CADImport;
...
public static void RemoveBlockFromDrawing(CADImage drawing, string blockName)
{
CADBlock block = drawing.Converter.BlockByName(blockName);
if (block != null)
{
// Find and remove all inserts of the given block
List<CADEntity> blockInserts = drawing.CurrentLayout.Entities.FindAll(ent => (ent.EntType == EntityType.Insert & (ent as CADInsert).Block.Name == blockName));
foreach (CADEntity ins in blockInserts)
drawing.RemoveEntity(ins);
// Remove the block from the BLOCKS section
drawing.Converter.GetSection(FaceModule.ConvSection.Blocks).RemoveEntityByName(blockName);
}
}
Technical Support E-mail: support@cadsofttools.com
Chat support on Skype: cadsofttools.support
Chat support on Skype: cadsofttools.support