public void SaveAs(
string fileName,
DwgVersion version
);
Parameters
Parameters | Description |
string fileName | Input file name or URL to write database out to |
DwgVersion version | Input dwg version to which to save the file |
Notes
The allowed values for version are:
DwgVersion.AC1014 // R14
DwgVersion.AC1015 // 2000
DwgVersion.AC1800 // 2004
DwgVersion.AC1021 // 2007
DwgVersion.AC1024 // 2010
DwgVersion.AC1027 // 2013
DwgVersion.AC1032 // 2018
dxf:
public void DxfOut(
string fileName,
int precision,
DwgVersion version
);
Parameters
Parameters | Description |
string fileName | Input name or URL of the new DXF file to create (the .dxf extension is not added automatically) |
int precision | Input number of bits of accuracy, from 0 to 16 |
DwgVersion version | Sets the DWG version major and minor number |