Add polylines in container
Moderators: SDS, support, admin
Add polylines in container
Hello
I need to add 4 polylines in the same container and if the person selects them all move together not separately
I need to add 4 polylines in the same container and if the person selects them all move together not separately
Re: Add polylines in container
Hello,
You can use a CADBlock object as the container for polylines and place the block instance (CADInsert) on the Model layout to allow the user to move the polylines.
Mikhail
You can use a CADBlock object as the container for polylines and place the block instance (CADInsert) on the Model layout to allow the user to move the polylines.
Mikhail
Technical Support E-mail: support@cadsofttools.com
Chat support on Skype: cadsofttools.support
Chat support on Skype: cadsofttools.support
Re: Add polylines in container
Hello,
Code example which creates a new CADBlock and CADInsert objects can be found in the AddEntities demo project: look at the AddInsert() method in Form1.cs. To add the polylines (CADPolyLine or CADLWPolyLine) into a block, you should use a CADBlock.AddEntity() method.
Mikhail
Code example which creates a new CADBlock and CADInsert objects can be found in the AddEntities demo project: look at the AddInsert() method in Form1.cs. To add the polylines (CADPolyLine or CADLWPolyLine) into a block, you should use a CADBlock.AddEntity() method.
Mikhail
Technical Support E-mail: support@cadsofttools.com
Chat support on Skype: cadsofttools.support
Chat support on Skype: cadsofttools.support