SheetXL - v0.3.20
    Preparing search index...

    Interface ISheetCollection

    Holds a collection of ISheets.

    interface ISheetCollection {
        add(options?: ISheetCollection.AddOptions): ISheet;
        getByName(name: string): ISheet;
        getCount(): number;
        search(options?: SearchOptions): ISheet[];
    }

    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 ISheet

    • Returns the total items available.

      Returns number

      Useful as a quick escape for search.

    • Returns sheets that match the search criteria.

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

      Parameters

      • Optionaloptions: SearchOptions

        ISheetCollection.SearchOptions

      Returns ISheet[]