Reputation: 1110
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.
Upvotes: 2
Views: 2437
Reputation: 1110
Ok friends instead of going through c# code using Autocad API's I have gone through following alternative i.e 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.
Upvotes: 0
Reputation: 1787
Out of curiosity, what are you doing with the sat file? And why
Upvotes: 1