Hello
I am trying to clone entities and move.
Some entities such as CADText are simple to move using point property.
However, entities like CADLWPolyLine and CADPolygon are not easy to move, because they contain multiple points.
Is there a way to move them(CADLWPolyLine, CADPolygon...) easily?
Thank you
Moving PolyLine, Polygon and so on
Moderators: SDS, support, admin
Re: Moving PolyLine, Polygon and so on
Hello Sing,
In case of CADLWPolyLine you will have to move each vertex in a CADLWPolyLine.Vertexes collection. As for CADPolygon, there is no such class in CADImport namespace.
Mikhail
In case of CADLWPolyLine you will have to move each vertex in a CADLWPolyLine.Vertexes collection. As for CADPolygon, there is no such class in CADImport namespace.
Mikhail
Technical Support E-mail: support@cadsofttools.com
Chat support on Skype: cadsofttools.support
Chat support on Skype: cadsofttools.support
Re: Moving PolyLine, Polygon and so on
I get it. Thank you.