Skip to main content

abstractEntireAxisSelection

Selection of an entire axis in the spreadsheet

Hierarchy

Index

Constructors

constructor


  • Parameters

    • start: number

      row index where the selection starts, integer

    • end: number

      row index where the selection ends, integer

    Returns EntireAxisSelection

Properties

readonlyend

end: number

Selection end index, integer

readonlystart

start: number

Selection start index, integer

Methods

abstracthas

  • Determines whether the given point is within the selection


    Parameters

    Returns boolean

abstracthasEntireColumn

  • hasEntireColumn(column: number): boolean
  • Determines whether the given column is entirely selected in given selection


    Parameters

    • column: number

    Returns boolean

abstracthasEntireRow

  • hasEntireRow(row: number): boolean
  • Determines whether the given row is entirely selected in given selection


    Parameters

    • row: number

    Returns boolean

abstractnormalizeTo

  • Normalize the selection according to the given data


    Parameters

    Returns EntireAxisSelection

abstractsize

  • size(data: Matrix<unknown>): number
  • Get the number of selected points according to given data


    Parameters

    Returns number

abstracttoRange

  • Get concrete range of the selection in the given data


    Parameters

    Returns null | PointRange