CAD下获取坐标
<font face="Verdana">在C#下运用AutoCAD ActiveX要得到点坐标我用的GetPoint()这个方法,但在C#中必须指定个点坐标,这样在AutoCAD中就会有一个连线,能否有办法直接获取点坐标呢?(不出现连线)</font> Ax的话,最好用VB.Net <p><font face="Verdana"> PromptPointOptions prPointOptions1 = new PromptPointOptions("\n请选择一个点:\n");<br/> PromptPointResult prPointRes;<br/> prPointRes = ed.GetPoint(prPointOptions1);<br/> if (prPointRes.Status == PromptStatus.OK) //正确选择了一个点<br/> {<br/> Point3d startPoint = prPointRes.Value;</font></p><p> }</p> <p><font face="Verdana">把点坐标用Type.Missing替换~~</font></p>
<p><font face="Verdana">aDocument.Utility.GetPoint(Type.Missing, "点坐标:");</font></p> <p>请问我如何直接得到某一层中所有点的坐标?</p>
<p> </p>
页:
[1]