[]
        
(Showing Draft Content)

Forguncy.Forguncy.ForguncyCommandHelper

类: ForguncyCommandHelper

Forguncy.Forguncy.ForguncyCommandHelper

提供命令相关的帮助方法

构造方法

constructor

new ForguncyCommandHelper()

方法

executeCellCommand

executeCellCommand(cellName, completedCallback?): void

执行指定名称单元格的命令

Example

Forguncy.CommandHelper.executeCellCommand("cellName", function(){
    console.log("Execute Completed"); 
});

参数

属性名 类型 说明
cellName string 单元格名称。
completedCallback? Function 命令执行后的回调函数。

返回值

void


getAllVariableValues

getAllVariableValues(): Object

在命令执行过程中,获取所有变量名称和值

Example

var variables = Forguncy.CommandHelper.getAllVariableValues();
for(var name in variables){
    console.log("variable name: " + name);
    console.log(variables[name]);
}

返回值

Object

所有变量的名称和值的列表。


getVariableValue

getVariableValue(variableName): any

在命令执行过程中,获取命令变量的值

Example

Forguncy.CommandHelper.getVariableValue("variableName");

参数

属性名 类型 说明
variableName string 变量名。

返回值

any

变量的值。


setVariableValue

setVariableValue(variableName, value): void

在命令执行过程中,设置命令变量的值

Example

Forguncy.CommandHelper.setVariableValue("variableName", 123);

参数

属性名 类型 说明
variableName string 变量名。
value any 值。

返回值

void