简体   繁体   中英

How to export a DWG format file into a SAT file using C# Autocad API's?

How to export a DWG format file into a SAT file using C# Autocad API's. Selection set is to be in SelectAll mode in SAT file. I am using VS 2010 and Autocad 2012. Code will be very helpful.

Ok friends instead of going through c# code using Autocad API's I have gone through following alternative ie creating an acaddoc.lsp file

and writting the following code into it. As my requirements are to be used inside a single folder this things that helped me out is.

(defun S::STARTUP()
(command "ACISOUT" "ALL" "" "")
)

For C#

 String progID = "AutoCAD.Application.18";
 AcadApplication acApp = (AcadApplication)Marshal.GetActiveObject(progID);
 acApp.ActiveDocument.SendCommand("ACISOUT ALL  ");

spaces inside the send command works as an enter.

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM