Represents a range selection between certain rows and columns of the grid. Range selection can be made either through drag selection or through keyboard selection.

Constructors

Accessors

  • get columnEnd(): string
  • Returns string

  • set columnEnd(value): void
  • The identifier or index of the ending column of the selection range. It can be either a string representing the column's field name or a numeric index.

    Parameters

    • value: string

    Returns void

  • get columnStart(): string
  • Returns string

  • set columnStart(value): void
  • The identifier or index of the starting column of the selection range. It can be either a string representing the column's field name or a numeric index.

    Parameters

    • value: string

    Returns void

  • get rowEnd(): number
  • Returns number

  • set rowEnd(value): void
  • The index of the ending row of the selection range.

    Parameters

    • value: number

    Returns void

  • get rowStart(): number
  • Returns number

  • set rowStart(value): void
  • The index of the starting row of the selection range.

    Parameters

    • value: number

    Returns void