微信公众号搜"智元新知"关注
微信扫一扫可直接关注哦!

02-02 控制AutoCAD环境二 控制图形窗口5更新文档窗口的几何信息

5、Update the Geometry in the Document Window更新文档窗口的几何信息

Many of the actions you perform through the AutoCAD .NET API modify what is displayed in the drawing area. Not all of these actions immediately update the display of the drawing. This is designed so you can make several changes to the drawing without waiting for the display to be updated after every single action. Instead,you can bundle your actions together and make a single call to update the display when you have finished.

通过AutoCAD .NET API执行的许多动作都会修改绘图区域显示内容,但不是所有的动作都立即更新图形显示。有这样的设计,我们就可以对图形进行多次(处)修改而不必等待每次(处)修改完都更新显示,相反我们可以将全部修改动作打包在一起并在所有修改动作都完成后只执行一次更新显示的操作。

The methods that will update the display are UpdateScreen (Application and Editor objects) and Regen (Editor object).

更新显示方法有UpdateScreen(Application对象和Editor对象的)和Regen(Editor对象的)。

The UpdateScreen method redraws the application or document windows. The Regen method regenerates the graphical objects in the drawing window,and recomputes the screen coordinates and view resolution for all objects. It also re-indexes the drawing database for optimum display and object selection performance.

UpdateScreen方法重画应用程序窗口或文档窗口,Regen方法重新生成绘图窗口中的图形对象并重新计算所有对象的屏幕坐标和视图变换,同时还为优化显示和对象选择性能重新索引图形数据库

VB.NET

'' Redraw the drawing

Application.UpdateScreen()

Application.DocumentManager.MdiActiveDocument.Editor.UpdateScreen()

'' Regenerate the drawing重新生成图形

Application.DocumentManager.MdiActiveDocument.Editor.Regen()

C#

// Redraw the drawing

Application.UpdateScreen();

Application.DocumentManager.MdiActiveDocument.Editor.UpdateScreen();

// Regenerate the drawing重新生成图形

Application.DocumentManager.MdiActiveDocument.Editor.Regen();

VBA/ActiveX Code Reference

'' Redraw the drawing重画图形

ThisDrawing.Application.Update

'' Regenerate the drawing重新生成图形

ThisDrawing.Regen

原文地址:https://www.jb51.cc/vb/261137.html

版权声明:本文内容由互联网用户自发贡献,该文观点与技术仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 dio@foxmail.com 举报,一经查实,本站将立刻删除。

相关推荐