Create New DXF Drawing?

Discuss and ask questions about CAD .NET library.

Moderators: SDS, support, admin

Post Reply
slingblade
Posts: 16
Joined: 31 May 2010, 13:33

Create New DXF Drawing?

Post by slingblade » 09 Jun 2010, 05:34

Hi,

Is is possible to create a new Dxf drawing? The only menu options I see in the examples are for opening an existing drawing.

support
Posts: 3272
Joined: 30 Mar 2005, 11:36
Contact:

Re: Create New DXF Drawing?

Post by support » 09 Jun 2010, 16:30

Hello.
CAD Import .NET works with CADImport.CADImage object that contains all entities. Such object can be created by following code:

Code: Select all

     cadImage = new CADImage();
     cadImage.InitialNewImage();
CADImage will be translated to DXF structure when export to DXF.

Alexander.
Technical Support E-mail: support@cadsofttools.com
Chat support on Skype: cadsofttools.support

slingblade
Posts: 16
Joined: 31 May 2010, 13:33

Re: Create New DXF Drawing?

Post by slingblade » 10 Jun 2010, 11:44

Thank you!

Post Reply