ScenarioInputCellCollection
Contents
[
Hide
]ScenarioInputCellCollection class
Represents the list of the scenario’s input cells.
class ScenarioInputCellCollection;
Methods
Method | Description |
---|---|
get(number) | Gets ScenarioInputCell by index in the list. |
add(number, number, string) | Adds an input cell. |
getCount() | 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:
Parameter | Type | Description |
---|---|---|
index | number | The 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:
Parameter | Type | Description |
---|---|---|
row | number | The row index of input cell. |
column | number | The column index of input cell. |
value | string | The value of input cell. |
getCount()
Gets the number of elements contained in.
getCount() : number;
isNull()
Checks whether the implementation object is null.
isNull() : boolean;