收藏订阅
DXF is an acronym for Drawing eXchange Format. DXF is an ASCII replication of the contents of a drawing file enabling the interchange of files from one CAD system to another program. DXF import/export is supported by a wide variety of applications, ranging from CAD products to word processors, desktop publishing and illustration tools. The DXF CAD format has become the defacto standard in PC based CAD industry with many other CAD systems able to read and write this format too.
With DXFReader you can also retrieve every drawing information and every entity and easily perform data manipulation and/or analysis directly within your development environment.
Features
The following is a highlight of some of the major features of DXFReader:
Dim Entity as DXFReaderEntity With DXFReader1 For Each Entity In .Entities If Entity.EntityType = "LINE" Then Printer.Print Sqr((Entity.X1 - Entity.X0) ^ 2 + (Entity.Y1 - Entity.Y0) ^ 2) End If Next Entity End With