CellWatch

CellWatch class

Represents Cell Watch Item in the ‘watch window’.

class CellWatch;

Constructors

ConstructorDescription
constructor()Default Constructor.

Properties

PropertyTypeDescription
rownumberGets and sets the row of the cell.
columnnumberGets and sets the column of the cell.
cellNamestringGets and sets the name of the cell.

Methods

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

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

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

ParameterTypeDescription
valuestringThe value to set.

isNull()

Checks whether the implementation object is null.

isNull() : boolean;