ScenarioInputCell
ScenarioInputCell class
Represents input cell for the scenario.
class ScenarioInputCell;
Properties
Property | Type | Description |
---|---|---|
row | number | Readonly. Gets and sets the row index of the input cell. |
column | number | Readonly. Gets and sets the column index of the input cell. |
name | string | Readonly. Gets and sets the input cell address. |
value | string | Gets and sets value of the input cell. |
isDeleted | boolean | Indicates whether input cell is deleted. |
Methods
Method | Description |
---|---|
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:
Parameter | Type | Description |
---|---|---|
value | string | The 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:
Parameter | Type | Description |
---|---|---|
value | boolean | The value to set. |
isNull()
Checks whether the implementation object is null.
isNull() : boolean;