Skip to main content

Abstract Class: EntireSelection

Defined in: src/selection.ts:97

Selection of an entire part of the spreadsheet

Extends

Extended by

Constructors

Constructor

new EntireSelection(): EntireSelection

Returns

EntireSelection

Inherited from

Selection.constructor

Methods

equals()

abstract equals(selection): boolean

Defined in: src/selection.ts:26

Determines whether the given selection is equal to this selection

Parameters

selection

Selection

Returns

boolean

Inherited from

Selection.equals


has()

abstract has(data, point): boolean

Defined in: src/selection.ts:23

Determines whether the given point is within the selection

Parameters

data

Matrix<unknown>

point

Point

Returns

boolean

Inherited from

Selection.has


hasEntireColumn()

abstract hasEntireColumn(column): boolean

Defined in: src/selection.ts:17

Determines whether the given column is entirely selected in given selection

Parameters

column

number

Returns

boolean

Inherited from

Selection.hasEntireColumn


hasEntireRow()

abstract hasEntireRow(row): boolean

Defined in: src/selection.ts:14

Determines whether the given row is entirely selected in given selection

Parameters

row

number

Returns

boolean

Inherited from

Selection.hasEntireRow


normalizeTo()

abstract normalizeTo(data): this

Defined in: src/selection.ts:11

Normalize the selection according to the given data

Parameters

data

Matrix<unknown>

Returns

this

Inherited from

Selection.normalizeTo


size()

abstract size(data): number

Defined in: src/selection.ts:20

Get the number of selected points according to given data

Parameters

data

Matrix<unknown>

Returns

number

Inherited from

Selection.size


toRange()

abstract toRange(data): PointRange | null

Defined in: src/selection.ts:8

Get concrete range of the selection in the given data

Parameters

data

Matrix<unknown>

Returns

PointRange | null

Inherited from

Selection.toRange