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

 

 

 

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值