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

来源:互联网 发布:apache系列番号公司的 编辑:程序博客网 时间:2024/05/16 03:04
 

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

 

 

 

原创粉丝点击