[]
Forguncy.Forguncy.ForguncyCommandHelper
提供命令相关的帮助方法
• new ForguncyCommandHelper()
▸ executeCellCommand(cellName
, completedCallback?
): void
执行指定名称单元格的命令
Example
Forguncy.CommandHelper.executeCellCommand("cellName", function(){
console.log("Execute Completed");
});
属性名 | 类型 | 说明 |
---|---|---|
cellName |
string |
单元格名称。 |
completedCallback? |
Function |
命令执行后的回调函数。 |
void
▸ getAllVariableValues(): Object
在命令执行过程中,获取所有变量名称和值
Example
var variables = Forguncy.CommandHelper.getAllVariableValues();
for(var name in variables){
console.log("variable name: " + name);
console.log(variables[name]);
}
Object
所有变量的名称和值的列表。
▸ getVariableValue(variableName
): any
在命令执行过程中,获取命令变量的值
Example
Forguncy.CommandHelper.getVariableValue("variableName");
属性名 | 类型 | 说明 |
---|---|---|
variableName |
string |
变量名。 |
any
变量的值。
▸ setVariableValue(variableName
, value
): void
在命令执行过程中,设置命令变量的值
Example
Forguncy.CommandHelper.setVariableValue("variableName", 123);
属性名 | 类型 | 说明 |
---|---|---|
variableName |
string |
变量名。 |
value |
any |
值。 |
void