How to Iterate All Entities inside a block?

Discuss and ask questions about CAD VCL (Delphi and C++ Builder).

Moderators: SDS, support, admin

Post Reply
FieldConsult
Posts: 54
Joined: 14 Mar 2015, 22:33

How to Iterate All Entities inside a block?

Post by FieldConsult » 09 Apr 2015, 16:02

How to Iterate All Entities inside a block and get witch type are every one for explode later?

FieldConsult
Posts: 54
Joined: 14 Mar 2015, 22:33

Re: How to Iterate All Entities inside a block?

Post by FieldConsult » 13 Apr 2015, 08:04

This forum is dead!!!!

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

Re: How to Iterate All Entities inside a block?

Post by support » 13 Apr 2015, 19:29

Hello,

The following procedure iterates through all entities inside a block specified by its name and reads the entity type (TsgCADEntities):

Code: Select all

uses
   ..., CADImage, DXFConv, sgConsts;


procedure AccessDXFBlockByName(ACADImage: TsgCADImage; ABlockName: string);
var
  I: Integer;
  vBlock: TsgDXFBlock;
  vEntity: TsgDXFEntity;
  vDXFLine: TsgDXFLine;
  vDXFCircle: TsgDXFCircle;
begin
  vBlock := ACADImage.Converter.BlockByName(ABlockName);
  if Assigned(vBlock) then
    for I := 0 to vBlock.Count - 1 do
    begin
      vEntity := vBlock.Entities[I];
      case vEntity.EntType of
        ceLine:
          vDXFLine := vEntity as TsgDXFLine;
        ceCircle:
          vDXFCircle := vEntity as TsgDXFCircle;
      end;
    end;
end;
Mikhail
Technical Support E-mail: support@cadsofttools.com
Chat support on Skype: cadsofttools.support

FieldConsult
Posts: 54
Joined: 14 Mar 2015, 22:33

Re: How to Iterate All Entities inside a block?

Post by FieldConsult » 14 Apr 2015, 21:01

Thanks!!

Post Reply