SheetXL - v0.3.20
    Preparing search index...

    Interface ITableCollection

    Holds a collection of ITables.

    interface ITableCollection {
        add(
            address: ICellRange.Address,
            options?: ITableCollection.AddOptions,
        ): ITable;
        getByName(name: string): ITable;
        getCount(): number;
        search(options?: SearchOptions): ITable[];
    }

    Hierarchy (View Summary)

    Index

    Methods

    • Convenience method for searching by name. This is functionally equivalent to search({ name });

      Parameters

      • name: string

        The name to search for This is case insensitive.

      Returns ITable

    • Returns the total items available.

      Returns number

      Useful as a quick escape for search.

    • Returns items that match the search criteria.

      If no search criteria is provided, all items will be returned.

      Parameters

      • Optionaloptions: SearchOptions

        ITableCollection.SearchOptions

      Returns ITable[]