CellWatch

CellWatch class

Represents Cell Watch Item in the ‘watch window’.

class CellWatch;

Constructors

NameDescription
constructor()Default Constructor.

Methods

MethodDescription
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.

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:

ParameterTypeDescription
valuenumberThe 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:

ParameterTypeDescription
valuenumberThe 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:

ParameterTypeDescription
valuestringThe value to set.