SheetXL - v0.3.20
    Preparing search index...

    Interface FixableCellCoords

    Adds fixable flag to IRange.CellCoords.

    interface FixableCellCoords {
        $colIndex?: boolean;
        $rowIndex?: boolean;
        colIndex: number;
        rowIndex: number;
    }

    Hierarchy (View Summary)

    Index

    Properties

    $colIndex?: boolean

    If true, the column is fixed.

    $rowIndex?: boolean

    If true, the row is fixed.

    colIndex: number

    The column index of the cell.

    rowIndex: number

    The row index of the cell.