Represents a single cell in the [[Spreadsheet]]

SpreadsheetCell

new SpreadsheetCell(row: number, column: number): SpreadsheetCell

Returns SpreadsheetCell

$t: Type

Returns the index of the column.

get column(): number

Returns number

Returns the index of the row

get row(): number

Returns number

Compares the value of this SheetCell instance to the specified [[SpreadsheetCell]].

equals(other: SpreadsheetCell): boolean

Parameters

  • other: SpreadsheetCell

    The instance of the [[SpreadsheetCell]] to compare

Returns boolean

Compares the specified [[SpreadsheetCell]] to this instance's values.

equals1(obj: any): boolean

Parameters

  • obj: any

    The object to compare to the current instance

Returns boolean

Returns a hash value for the [[SpreadsheetCell]]

getHashCode(): number

Returns number

Returns a string representation of the [[SpreadsheetCell]]

toString(): string

Returns string

staticInit(): void

Returns void