How to Iterate All Entities inside a block?
Moderators: SDS, support, admin
-
- Posts: 54
- Joined: 14 Mar 2015, 22:33
How to Iterate All Entities inside a block?
How to Iterate All Entities inside a block and get witch type are every one for explode later?
-
- Posts: 54
- Joined: 14 Mar 2015, 22:33
Re: How to Iterate All Entities inside a block?
This forum is dead!!!!
Re: How to Iterate All Entities inside a block?
Hello,
The following procedure iterates through all entities inside a block specified by its name and reads the entity type (TsgCADEntities):
Mikhail
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;
Technical Support E-mail: support@cadsofttools.com
Chat support on Skype: cadsofttools.support
Chat support on Skype: cadsofttools.support
-
- Posts: 54
- Joined: 14 Mar 2015, 22:33