SheetXL - v0.3.20
    Preparing search index...

    Adds fixed flags to IRange.Coords.

    interface FixableCoords {
        $colEnd?: boolean;
        $colStart?: boolean;
        $rowEnd?: boolean;
        $rowStart?: boolean;
        colEnd: number;
        colStart: number;
        rowEnd: number;
        rowStart: number;
    }

    Hierarchy (View Summary)

    Index

    Properties

    $colEnd?: boolean

    If true then the colEnd is fixed.

    false
    
    $colStart?: boolean

    If true then the colStart is fixed.

    false
    
    $rowEnd?: boolean

    If true then the rowEnd is fixed.

    false
    
    $rowStart?: boolean

    If true then the rowStart is fixed.

    false
    
    colEnd: number

    Right column

    colStart: number

    Left column

    rowEnd: number

    Bottom row

    rowStart: number

    Top row