找回密码
 立即注册

QQ登录

只需一步,快速开始

扫一扫,访问微社区

查看: 849|回复: 2

在arx中能够改变autolisp变量的值吗?

[复制链接]
发表于 2002-4-13 00:08:55 | 显示全部楼层 |阅读模式

马上注册,结交更多好友,享用更多功能,让你轻松玩转社区。

您需要 登录 才可以下载或查看,没有账号?立即注册

×
在arx中能够改变autolisp变量的值吗?
论坛插件加载方法
发帖求助前要善用【论坛搜索】功能,那里可能会有你要找的答案;
如果你在论坛求助问题,并且已经从坛友或者管理的回复中解决了问题,请把帖子标题加上【已解决】;
如何回报帮助你解决问题的坛友,一个好办法就是给对方加【D豆】,加分不会扣除自己的积分,做一个热心并受欢迎的人!

已领礼包: 145个

财富等级: 日进斗金

发表于 2002-4-13 00:32:25 | 显示全部楼层
可以,写ADSRX的程序,既通过ADS_DEFUN来定义外部函数(命令)中,通过ads_putsym,见下面:

int
acedPutSym(
    const char* sname,

    struct resbuf* value);

Include File

acedads.h

Sets the value of an AutoLISP symbol.
Warning This command can be used in the ARX program environment only when AutoCAD sends the message kInvkSubrMsg to the application.
The sname argument specifies the symbol name. The value argument is a pointer to a result-buffer list that specifies the value of the symbol. The list must contain values of types that can be represented in AutoLISP; if it doesn't, the acedPutSym() call fails. To set the value of the AutoLISP symbol to nil, make the following assignment:

value->restype = RTNIL;

If sname is not the name of a current symbol, acedPutSym() creates a new AutoLISP symbol with this name and assigns it the value.
Note An acedPutSym() function call can create a new AutoLISP symbol that AutoLISP cannot access--for example, by including illegal characters in the symbol name, such as "pair(s". An acedGetSym() call can access such symbols, but they will cause an error in a future upgrade or release of AutoCAD. Your programs should not rely on this capability.

The acedPutSym() function returns RTNORM if it succeeds; otherwise, it returns RTERROR. When acedPutSym() fails, it sets the system variable ERRNO to a value that indicates the reason for the failure.
论坛插件加载方法
发帖求助前要善用【论坛搜索】功能,那里可能会有你要找的答案;
如果你在论坛求助问题,并且已经从坛友或者管理的回复中解决了问题,请把帖子标题加上【已解决】;
如何回报帮助你解决问题的坛友,一个好办法就是给对方加【D豆】,加分不会扣除自己的积分,做一个热心并受欢迎的人!
回复 支持 反对

使用道具 举报

已领礼包: 145个

财富等级: 日进斗金

发表于 2002-4-13 00:35:02 | 显示全部楼层
如果你要在使用addCommand方法定义的ARX命令(纯ARX)不能用上面的方法,你可以用论坛介绍过的往ACAD命令行发字符串的方法,设置变量。

比如把"(setq 变量名 值)"发送到命令行,让ACAD的LISP解释执行。

发送的方法搜索下论坛,有好几种方法。
论坛插件加载方法
发帖求助前要善用【论坛搜索】功能,那里可能会有你要找的答案;
如果你在论坛求助问题,并且已经从坛友或者管理的回复中解决了问题,请把帖子标题加上【已解决】;
如何回报帮助你解决问题的坛友,一个好办法就是给对方加【D豆】,加分不会扣除自己的积分,做一个热心并受欢迎的人!
回复 支持 反对

使用道具 举报

您需要登录后才可以回帖 登录 | 立即注册

本版积分规则

QQ|申请友链|Archiver|手机版|小黑屋|辽公网安备|晓东CAD家园 ( 辽ICP备15016793号 )

GMT+8, 2024-11-16 03:13 , Processed in 0.353755 second(s), 35 queries , Gzip On.

Powered by Discuz! X3.5

© 2001-2024 Discuz! Team.

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