EaBIM一直以来积极响应国家“十二五”推进建筑业信息化的号召,对建筑领域的信息技术开展深入技术交流和探讨!致力于打造“BIM-建筑师-生态技术”三位一体综合资源交流共享平台,希望为BIM与可持续设计理念及技术的普及做出微小的贡献!!!

EaBIM

 找回密码
 注册

QQ登录

只需一步,快速开始

扫一扫,访问微社区

搜索
查看: 547|回复: 0
打印 上一主题 下一主题

[资料] 控制AutoCAD环境(二) 控制图形窗口(5)更新文档窗口的几何信息

[复制链接]

1514

主题

7465

帖子

1万

积分

admin

Rank: 10Rank: 10Rank: 10Rank: 10Rank: 10Rank: 10Rank: 10Rank: 10Rank: 10Rank: 10

积分
12404

社区QQ达人

跳转到指定楼层
楼主
发表于 2014-1-8 16:09:48 | 只看该作者 回帖奖励 |倒序浏览 |阅读模式
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


分享到:  QQ好友和群QQ好友和群 QQ空间QQ空间 腾讯微博腾讯微博 腾讯朋友腾讯朋友 微信微信
收藏收藏 转播转播 分享分享 分享淘帖 支持支持 反对反对

相关帖子

工作时间:工作日的9:00-12:00/13:30-18:00,节假日不在线,请勿留言
*滑块验证:
您需要登录后才可以回帖 登录 | 注册

本版积分规则

QQ|EaBIM网 ( 苏ICP备2020058923号-1  苏公网安备32011502011255号

GMT+8, 2024-11-16 12:39

Powered by Discuz! X3.2 Licensed

© 2001-2013 Comsenz Inc.

快速回复 返回顶部 返回列表