CAEngine::SendCommand

This page is a translated version of the page CAEngine::SendCommand and the translation is 100% complete.

ADE User Guide > ADE Server Class Reference > CAEngine

Other languages:
English • ‎中文

bool SendCommand(string command)

将包含在Command属性内的字符串作为指令发送给ADE去执行。 关于指令和语法的详细信息请参考 Analytica脚本指南

在执行typescript指令时 SendCommand是一个比 Send跟家快速的简单方法。使用 Send需要以下两条语句执行一条指令。

ade.Command = "profile Va1"
b = ade.Send( )

只要一条 SendCommand语句即可实现。

b = ade.SendCommand("profile Va1")

返回值

Boolean(布尔值:success或者 failure)

错误代码

可能错误代码列表可能不完整

1 – “未执行”
2 – “警告”
3 – “语法错误”
4 – “语句错误”
5 – “表达式错误”
6 – “执行错误”
7 – “系统错误”
8 – “致命错误”
9 – “未定义变量错误”
10 – “终止”

另请参考

Comments


You are not allowed to post comments.