ScenarioInputCell

ScenarioInputCell class

Represents input cell for the scenario.

class ScenarioInputCell;

Properties

PropertyTypeDescription
rownumberReadonly. Gets and sets the row index of the input cell.
columnnumberReadonly. Gets and sets the column index of the input cell.
namestringReadonly. Gets and sets the input cell address.
valuestringGets and sets value of the input cell.
isDeletedbooleanIndicates whether input cell is deleted.

Methods

MethodDescription
getRow()@deprecated. Please use the ‘row’ property instead. Gets and sets the row index of the input cell.
getColumn()@deprecated. Please use the ‘column’ property instead. Gets and sets the column index of the input cell.
getName()@deprecated. Please use the ’name’ property instead. Gets and sets the input cell address.
getValue()@deprecated. Please use the ‘value’ property instead. Gets and sets value of the input cell.
setValue(string)@deprecated. Please use the ‘value’ property instead. Gets and sets value of the input cell.
isDeleted()@deprecated. Please use the ‘isDeleted’ property instead. Indicates whether input cell is deleted.
setIsDeleted(boolean)@deprecated. Please use the ‘isDeleted’ property instead. Indicates whether input cell is deleted.
isNull()Checks whether the implementation object is null.

row

Readonly. Gets and sets the row index of the input cell.

row : number;

column

Readonly. Gets and sets the column index of the input cell.

column : number;

name

Readonly. Gets and sets the input cell address.

name : string;

value

Gets and sets value of the input cell.

value : string;

isDeleted

Indicates whether input cell is deleted.

isDeleted : boolean;

getRow()

@deprecated. Please use the ‘row’ property instead. Gets and sets the row index of the input cell.

getRow() : number;

getColumn()

@deprecated. Please use the ‘column’ property instead. Gets and sets the column index of the input cell.

getColumn() : number;

getName()

@deprecated. Please use the ’name’ property instead. Gets and sets the input cell address.

getName() : string;

getValue()

@deprecated. Please use the ‘value’ property instead. Gets and sets value of the input cell.

getValue() : string;

setValue(string)

@deprecated. Please use the ‘value’ property instead. Gets and sets value of the input cell.

setValue(value: string) : void;

Parameters:

ParameterTypeDescription
valuestringThe value to set.

isDeleted()

@deprecated. Please use the ‘isDeleted’ property instead. Indicates whether input cell is deleted.

isDeleted() : boolean;

setIsDeleted(boolean)

@deprecated. Please use the ‘isDeleted’ property instead. Indicates whether input cell is deleted.

setIsDeleted(value: boolean) : void;

Parameters:

ParameterTypeDescription
valuebooleanThe value to set.

isNull()

Checks whether the implementation object is null.

isNull() : boolean;