A structure containing a range of cells.
Constructor methods
constructor(fromRow: number, fromCell: number, toRow?: number, toCell?: number): Range
A structure containing a range of cells.
Parameters
Returns
Range
Properties
public fromCell: number
public fromRow: number
public toCell: number
public toRow: number
Methods
public contains(row: number, cell: number): boolean
Returns whether a range contains a given cell.
Parameters
Returns
boolean
public isSingleCell(): boolean
Returns whether a range represents a single cell.
Returns
boolean
public isSingleRow(): boolean
Returns whether a range represents a single row.
Returns
boolean
public toString(): string
Returns a readable representation of a range.
Returns
string