ScenarioInputCellCollection

ScenarioInputCellCollection class

Represents the list of the scenario’s input cells.

class ScenarioInputCellCollection;

Methods

MethodDescription
get(number)Gets ScenarioInputCell by index in the list.
add(number, number, string)Adds an input cell.
getCount()@deprecated. Please use the ‘count’ property instead. Gets the number of elements contained in.
isNull()Checks whether the implementation object is null.

get(number)

Gets ScenarioInputCell by index in the list.

get(index: number) : ScenarioInputCell;

Parameters:

ParameterTypeDescription
indexnumberThe specific index in the list

Returns

The ScenarioInputCell object

add(number, number, string)

Adds an input cell.

add(row: number, column: number, value: string) : number;

Parameters:

ParameterTypeDescription
rownumberThe row index of input cell.
columnnumberThe column index of input cell.
valuestringThe value of input cell.

getCount()

@deprecated. Please use the ‘count’ property instead. Gets the number of elements contained in.

getCount() : number;

isNull()

Checks whether the implementation object is null.

isNull() : boolean;