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.
问问题
2002 次
2 回答
1
出于好奇,你在用 sat 文件做什么?以及为什么
于 2013-08-26T23:54:48.850 回答
0
好的朋友,而不是使用 Autocad API 的 c# 代码,我已经完成了以下替代方法,即创建 acaddoc.lsp 文件
并将以下代码写入其中。由于我的要求将在单个文件夹中使用,因此帮助我的事情是。
(defun S::STARTUP()
(command "ACISOUT" "ALL" "" "")
)
对于 C#
String progID = "AutoCAD.Application.18";
AcadApplication acApp = (AcadApplication)Marshal.GetActiveObject(progID);
acApp.ActiveDocument.SendCommand("ACISOUT ALL ");
发送命令中的空格作为输入。
于 2013-09-20T09:35:24.963 回答