我已经创建了AutoCAD插件来测量线的距离。另外我创建了一个窗体应用程序来加载我创建的插件。我尝试将使用AutoCAD插件中的命令测量的值返回到窗体应用程序,但所有操作都是徒劳的。我的一些方法是:
我插入在autocad中获得的结果并尝试检索它。 我尝试了界面技术。
答案 0 :(得分:1)
您可以将距离存储在USERR1 to USERR5系统变量中,然后使用来自外部流程的Document.GetVariable
COM API进行读取。
您可以在EndCommand
事件上安装处理程序,以检测命令何时完成。
以下是一些代码:
using Autodesk.AutoCAD.Interop;
[..]
void button1_Click(object sender, EventArgs e)
{
const uint MK_E_UNAVAILABLE = 0x800401e3;
AcadApplication acad;
try
{
// Try to get a running instance of AutoCAD 2016
acad = (AcadApplication) Marshal.GetActiveObject("AutoCAD.Application.20.1");
}
catch (COMException ex) when ((uint) ex.ErrorCode == MK_E_UNAVAILABLE)
{
// AutoCAD is not running, we start it
acad = (AcadApplication) Activator.CreateInstance(Type.GetTypeFromProgID("AutoCAD.Application.20.1"));
}
activeDocument = acad.ActiveDocument;
activeDocument.EndCommand += ActiveDocument_EndCommand;
activeDocument.SendCommand("YOURCOMMAND ");
}
void ActiveDocument_EndCommand(string CommandName)
{
if (CommandName != "YOURCOMMAND") return;
try
{
double value = activeDocument.GetVariable("USERR1");
// Process the value
MessageBox.Show(value.ToString());
}
finally
{
// Remove the handler
activeDocument.EndCommand -= ActiveDocument_EndCommand;
}
}