CellWatch
CellWatch class
Represents Cell Watch Item in the ‘watch window’.
class CellWatch;
Constructors
| Constructor | Description |
|---|---|
| constructor() | Default Constructor. |
Properties
| Property | Type | Description |
|---|---|---|
| row | number | Gets and sets the row of the cell. |
| column | number | Gets and sets the column of the cell. |
| cellName | string | Gets and sets the name of the cell. |
Methods
| Method | Description |
|---|---|
| getRow() | @deprecated. Please use the ‘row’ property instead. Gets and sets the row of the cell. |
| setRow(number) | @deprecated. Please use the ‘row’ property instead. Gets and sets the row of the cell. |
| getColumn() | @deprecated. Please use the ‘column’ property instead. Gets and sets the column of the cell. |
| setColumn(number) | @deprecated. Please use the ‘column’ property instead. Gets and sets the column of the cell. |
| getCellName() | @deprecated. Please use the ‘cellName’ property instead. Gets and sets the name of the cell. |
| setCellName(string) | @deprecated. Please use the ‘cellName’ property instead. Gets and sets the name of the cell. |
| isNull() | Checks whether the implementation object is null. |
constructor()
Default Constructor.
constructor();
row
Gets and sets the row of the cell.
row : number;
column
Gets and sets the column of the cell.
column : number;
cellName
Gets and sets the name of the cell.
cellName : string;
getRow()
@deprecated. Please use the ‘row’ property instead. Gets and sets the row of the cell.
getRow() : number;
setRow(number)
@deprecated. Please use the ‘row’ property instead. Gets and sets the row of the cell.
setRow(value: number) : void;
Parameters:
| Parameter | Type | Description |
|---|---|---|
| value | number | The value to set. |
getColumn()
@deprecated. Please use the ‘column’ property instead. Gets and sets the column of the cell.
getColumn() : number;
setColumn(number)
@deprecated. Please use the ‘column’ property instead. Gets and sets the column of the cell.
setColumn(value: number) : void;
Parameters:
| Parameter | Type | Description |
|---|---|---|
| value | number | The value to set. |
getCellName()
@deprecated. Please use the ‘cellName’ property instead. Gets and sets the name of the cell.
getCellName() : string;
setCellName(string)
@deprecated. Please use the ‘cellName’ property instead. Gets and sets the name of the cell.
setCellName(value: string) : void;
Parameters:
| Parameter | Type | Description |
|---|---|---|
| value | string | The value to set. |
isNull()
Checks whether the implementation object is null.
isNull() : boolean;