Remove block and its entities from drawing

Discuss and ask questions about CAD .NET library.

Moderators: SDS, support, admin

Post Reply
StefanChrist
Posts: 22
Joined: 06 Jul 2018, 10:52

Remove block and its entities from drawing

Post by StefanChrist » 13 Sep 2018, 08:43

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.

support
Posts: 3271
Joined: 30 Mar 2005, 11:36
Contact:

Re: Remove block and its entities from drawing

Post by support » 13 Sep 2018, 19:25

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:

Code: Select all

drawing.Converter.GetSection(FaceModule.ConvSection.Blocks).RemoveEntityByName("Block1");
Please note that CADInsert entities refer to block(s), so they should be removed before deleting a block.

Mikhail
Technical Support E-mail: support@cadsofttools.com
Chat support on Skype: cadsofttools.support

StefanChrist
Posts: 22
Joined: 06 Jul 2018, 10:52

Re: Remove block and its entities from drawing

Post by StefanChrist » 14 Sep 2018, 08:50

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:

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
When should those entities be removed?

Thank you!

support
Posts: 3271
Joined: 30 Mar 2005, 11:36
Contact:

Re: Remove block and its entities from drawing

Post by support » 18 Sep 2018, 22:50

Hello Stefan,

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");
Please try the following code:

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);
    }
}
Mikhail
Technical Support E-mail: support@cadsofttools.com
Chat support on Skype: cadsofttools.support

Post Reply