ScenarioInputCell
Contents
[
Hide
]ScenarioInputCell class
Represents input cell for the scenario.
class ScenarioInputCell;
Methods
Method | Description |
---|---|
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. |
isNull() | Checks whether the implementation object is null. |
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:
Parameter | Type | Description |
---|---|---|
value | string | The 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:
Parameter | Type | Description |
---|---|---|
value | boolean | The value to set. |
isNull()
Checks whether the implementation object is null.
isNull() : boolean;