Type Alias NxSelectionCell

type NxSelectionCell = {
    qCol?: number;
    qRow?: number;
    qType?: NxSelectionCellType;
}
Index

Properties

Properties

qCol?: number

Column index to select. Indexing starts from 0. If the cell's type is:

  • D, the index is based on the data matrix.
  • T, the index is based on the data matrix.
  • L, the index is based on the left dimensions indexes.
qRow?: number

Row index to select. Indexing starts from 0. If the cell's type is:

  • D, the index is based on the data matrix.
  • T, the index is based on the top dimensions indexes.
  • L, the index is based on the data matrix.

Type of cells to select.

One of:

  • D or NX_CELL_DATA
  • T or NX_CELL_TOP
  • L or NX_CELL_LEFT