Spline with dwg files and from blocks
Moderators: SDS, support, admin
-
- Posts: 32
- Joined: 20 Jun 2019, 16:40
Spline with dwg files and from blocks
Hi,
I want to know how can I get Spline from blocks or from DWG file?
Regards,
Shiv
I want to know how can I get Spline from blocks or from DWG file?
Regards,
Shiv
Re: Spline with dwg files and from blocks
Hello Shiv,
To get all entities of the Spline type from a block with a given name, you may use the following code:
Mikhail
To get all entities of the Spline type from a block with a given name, you may use the following code:
Code: Select all
List<CADEntity> splinesInBlock = cadImage.Converter.BlockByName("Block1").Entities.FindAll(ent => ent.EntType == EntityType.Spline);
Technical Support E-mail: support@cadsofttools.com
Chat support on Skype: cadsofttools.support
Chat support on Skype: cadsofttools.support