How to Get List of CADVertex from CADEntityCollection for LWPolygon.Vertexes?
Thanks
Thangaraj N
How to Get List of CADVertex from CADEntityCollection
Moderators: SDS, support, admin
-
- Posts: 19
- Joined: 31 Aug 2017, 09:47
Re: How to Get List of CADVertex from CADEntityCollection
Hello,
You can use the following code:
Mikhail
You can use the following code:
Code: Select all
using CADImport;
using System.Collections.Generic;
...
CADLWPolyLine lwPolyline;
...
List<CADVertex> vertexes = new List<CADVertex>();
lwPolyline.Vertexes.ForEach(ent => vertexes.Add(ent as CADVertex));
Technical Support E-mail: support@cadsofttools.com
Chat support on Skype: cadsofttools.support
Chat support on Skype: cadsofttools.support