SheetXL - v0.3.20
    Preparing search index...

    Interface IRuntime

    Provides details about the system level runtime environment.

    interface IRuntime {
        getCurrencySymbol(): string;
        getDescription(): string;
        getLocation(): string;
        getNumberDecimalSeparator(): string;
        getNumberGroupSeparator(): string;
        getOS(): string;
        getUser(): string;
        getVersion(): string;
        isDate1904(): boolean;
    }
    Index

    Methods

    • Returns the currency symbol for currency values.

      Returns string

    • Returns a description of the runtime environment.

      Returns string

    • The location of the runtime, e.g. "browser", "node", etc.

      Returns string

    • Returns the decimal separator for number values.

      Returns string

    • Returns the group separator for number values.

      Returns string

    • Returns the OS string of the runtime.

      Returns string

    • Returns the current user or null if no user information is provided.

      Returns string

    • The version of the runtime, e.g. "1.0.0".

      Returns string

    • Returns true if the date calculation is using the 1904 date system.

      Returns boolean