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

相关文章

Format[$] ( expr [ , fmt ] ) format 返回变体型 format$ 强...
VB6或者ASP 格式化时间为 MM/dd/yyyy 格式,竟然没有好的办...
在项目中添加如下代码:新建窗口来显示异常信息。 Namespace...
转了这一篇文章,原来一直想用C#做k3的插件开发,vb没有C#用...
Sub 分列() ‘以空格为分隔符,连续空格只算1个。对所选...
  窗体代码 1 Private Sub Text1_OLEDragDrop(Data As Dat...