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

EaBIM

 找回密码
 注册

QQ登录

只需一步,快速开始

扫一扫,访问微社区

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

[资料] 控制AutoCAD环境(六) 设置和返回系统变量

[复制链接]

1514

主题

7465

帖子

1万

积分

admin

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

积分
12406

社区QQ达人

跳转到指定楼层
楼主
发表于 2014-1-8 15:58:09 | 只看该作者 回帖奖励 |倒序浏览 |阅读模式
Set and Return System Variables
设置和返回系统变量
The Application object provides the SetSystemVariable and GetSystemVariable methods for setting and retrieving AutoCAD system variables. For example, to assign an integer to the MAXSORT system variable, use the following code:
Application对象提供了SetSystemVariable方法和GetSystemVariable方法来设置和提取系统变量。例如,下例代码将一个整数赋值给系统变量MAXSORT:
VB.NET

'' Get the current value from a system variable
Dim nMaxSort as Integer = Application.GetSystemVariable("MAXSORT")
'' Set system variable to new value
Application.SetSystemVariable("MAXSORT", 100)
C#

// Get the current value from a system variable取值
int nMaxSort = System.Convert.ToInt32(Application.GetSystemVariable("MAXSORT"));
// Set system variable to new value赋值
Application.SetSystemVariable("MAXSORT", 100);
VBA/ActiveX Code Reference
'' Get the current value from a system variable
Dim nMaxSort as Integer
nMaxSort = ThisDrawing.GetVariable("MAXSORT")
'' Set system variable to new value
ThisDrawing.SetVariable "MAXSORT", 100

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

相关帖子

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

本版积分规则

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

GMT+8, 2024-11-27 04:15

Powered by Discuz! X3.2 Licensed

© 2001-2013 Comsenz Inc.

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