|
Description
|
Writes the current drawing on a DXF file on disk.
|
|
Syntax
|
[form.]DXFReader.WriteDXF ([DXFFileName As String], [OnlyEntities As Boolean], [Precision As Integer], [DXFVersion As Integer])
|
|
Remarks
|
Invoking this method will set the drawing extents to the rectangle delimited by (MinX, MinY)-(MaxX, MaxY). The parameters for the WriteDXF method are described below:
| DXFFileName | (Optional) Specify this parameter if you want to write a DXF file different from that of FileName property | | OnlyEntities | (Optional) Setting this property to True will write a DXF file containing only the drawing's entities (Default value = False) | | Precision | (Optional) The precision of the DXF file. Valid values are from 0 to 12 (Default value = 6) | | DXFVersion | (Optional) The version of the DXF file. Valid values are: 2, 9, 10, 11, 12, 13, 14, 2000, 2004, 2007 (Default value = 14) |
|