SheetXL - v0.3.20
    Preparing search index...

    Interface ConstructorOptions

    Options available when creating a Calculation Service.

    interface ConstructorOptions {
        getFunction?: (name: string) => IFunction;
        getNamed?: (name: string, scope?: string) => IRange.FixableCoords[];
        isDate1904?: () => boolean;
        maxIterations?: number;
    }

    Hierarchy (View Summary)

    Index

    Properties

    getFunction?: (name: string) => IFunction

    Hook to provide custom functions.

    Type declaration

      • (name: string): IFunction
      • Parameters

        • name: string

          name of the function

        Returns IFunction

        IFunction

    Names will always be passed as the user input them but are generally treated as case insensitive

    getNamed?: (name: string, scope?: string) => IRange.FixableCoords[]

    Hook to provide custom names.

    Type declaration

    Names will always be passed as the user input them but are generally treated as case insensitive

    isDate1904?: () => boolean

    Callback that determines if dates are 1904.

    maxIterations?: number

    The maximum number of iterations to perform when calculating.