SheetXL - v0.3.20
    Preparing search index...

    Interface GetFixedOptions

    Options for configuring range coordinate reference types. Each option allows you to specify whether a coordinate should be fixed (absolute) or flexible (relative).

    interface GetFixedOptions {
        colEnd?: boolean;
        colStart?: boolean;
        rowEnd?: boolean;
        rowStart?: boolean;
    }
    Index

    Properties

    colEnd?: boolean

    If true, sets the ending column coordinate as absolute; if false, sets it as relative. Defaults to no change if not provided.

    colStart?: boolean

    If true, sets the starting column coordinate as absolute; if false, sets it as relative. Defaults to no change if not provided.

    rowEnd?: boolean

    If true, sets the ending row coordinate as absolute; if false, sets it as relative. Defaults to no change if not provided.

    rowStart?: boolean

    If true, sets the starting row coordinate as absolute; if false, sets it as relative. Defaults to no change if not provided.