ScenarioInputCell

ScenarioInputCell class

Represents input cell for the scenario.

class ScenarioInputCell;

Methods

MethodDescription
getRow()Gets and sets the row index of the input cell.
getColumn()Gets and sets the column index of the input cell.
getName()Gets and sets the input cell address.
getValue()Gets and sets value of the input cell.
setValue(string)Gets and sets value of the input cell.
isDeleted()Indicates whether input cell is deleted.
setIsDeleted(boolean)Indicates whether input cell is deleted.

getRow()

Gets and sets the row index of the input cell.

getRow() : number;

getColumn()

Gets and sets the column index of the input cell.

getColumn() : number;

getName()

Gets and sets the input cell address.

getName() : string;

getValue()

Gets and sets value of the input cell.

getValue() : string;

setValue(string)

Gets and sets value of the input cell.

setValue(value: string) : void;

Parameters:

ParameterTypeDescription
valuestringThe value to set.

isDeleted()

Indicates whether input cell is deleted.

isDeleted() : boolean;

setIsDeleted(boolean)

Indicates whether input cell is deleted.

setIsDeleted(value: boolean) : void;

Parameters:

ParameterTypeDescription
valuebooleanThe value to set.