求如何得到CAD里现在的光标位置
如何得到CAD里现在的光标位置?看了论坛里有动态得到光标位置,但要结束那个程序必有按下左键,我只想返回一下CAD光标的的坐标,希望各位老师指导一下(cadr(grread T 15 2)) 1,PointMonitor
2,Jig
3,API 求高手给个示例代码 using aApp = Autodesk.AutoCAD.ApplicationServices.Application;
aApp.DocumentManager.MdiActiveDocument.Editor.PointMonitor += new PointMonitorEventHandler(ed_PointMonitor);
void ed_PointMonitor(object sender, PointMonitorEventArgs e)
{
//e.Context 里面有一大堆点,你用 e.Context.ComputedPoint 吧
} 楼上正解,我也准备说Editor.PointMonitor事件 也可以使用Application.PreTranslateMessage捕获任何你感兴趣的事件
页:
[1]