- 积分
- 598
- 回帖
- 0
- 西莫币
-
- 贡献
-
- 威望
-
- 存款
-
- 阅读权限
- 20
- 最后登录
- 1970-1-1
该用户从未签到
|
马上注册,结交更多好友,享用更多功能,让你轻松玩转社区。
您需要 登录 才可以下载或查看,没有账号?立即注册
x
本帖最后由 elvint 于 2012-10-6 10:12 编辑
1 PropHost 及其意义
Callback Scripting Using PropHost Object
Callback scripts are scripts that can be set in the Property Dialog for individual properties by clicking the button in the Callback column and choosing a script that is saved with the project. Callback scripts can contain any legal script commands including general Ansoft script function calls (e.g. GetApplication(), …). In addition, they can call functions on a special object named PropHost. The PropHost represents the PropServer (owner of properties) that contains the Property that is calling the Callback script. Therefore, the Callback script can use the PropHost's functions to query or set other properties in the same PropServer.
Definitions
<propName> = text string
<value> = double
<valueText> = text string
<fileName> = full path file name
<choices> = string containing menu choices separated by commas
<initialChoice> = string containing initial choice for menu; must be one of the <choices>
<scriptName> = string containing name of script stored in project
<bool> is 1 for true or 0 for false
通过帮助可以看到,Callback script 和PropHost's functions 可以实现较多的功能,实用性较强,但是对其应用的说明并不完善。
2 我在PropHost 的实例应用中的遇到的疑惑
帮助文件中列举了有关PropHost 对象的一个功能实例是:
PropertyExists '功能
Finds named property and returns its property type.Returns 1 if property exists in any tab, 0 if it does not. '测定属性是否存在
Syntax: PropertyExists(<propName>) '语法
Example: a = PropHost.PropertyExists( "W1") '例子
'returns 1 since this property is present on DefinitionParams tab '例子的功能
如果在其他脚本命令正确的前提下(App,Project,Design 对象均已经设置)运行这条语句,运行这个命令时,会提示 PropHost这个对象没有定义。那如何定义这个对象呢?
3 问题
1) 帮助说PropHost对象的函数是Callback script调用的,那么Callback script是什么脚本,是不是普通ANSOFT可以运行的脚本呢?是否可以自行编辑?帮助说它是由Project保存的Script又是指什么意思?
2) Ansoft的PropHost对象应该怎样定义?这个是最关键的问题。
这个问题让人很糊涂,且Ansoft并未直接给出一个定义的实例,希望有经验的人不吝赐教,也希望有同样问题的人能进行讨论。 |
|