CellWatch
Contents
[
Hide
]CellWatch class
Represents Cell Watch Item in the ‘watch window’.
class CellWatch;
Constructors
Name | Description |
---|---|
constructor() | Default Constructor. |
Methods
Method | Description |
---|---|
getRow() | Gets and sets the row of the cell. |
setRow(number) | Gets and sets the row of the cell. |
getColumn() | Gets and sets the column of the cell. |
setColumn(number) | Gets and sets the column of the cell. |
getCellName() | Gets and sets the name of the cell. |
setCellName(string) | Gets and sets the name of the cell. |
isNull() | Checks whether the implementation object is null. |
constructor()
Default Constructor.
constructor();
getRow()
Gets and sets the row of the cell.
getRow() : number;
setRow(number)
Gets and sets the row of the cell.
setRow(value: number) : void;
Parameters:
Parameter | Type | Description |
---|---|---|
value | number | The value to set. |
getColumn()
Gets and sets the column of the cell.
getColumn() : number;
setColumn(number)
Gets and sets the column of the cell.
setColumn(value: number) : void;
Parameters:
Parameter | Type | Description |
---|---|---|
value | number | The value to set. |
getCellName()
Gets and sets the name of the cell.
getCellName() : string;
setCellName(string)
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;