[]
        
(Showing Draft Content)

ISheetTabs

Interface ISheetTabs

All Superinterfaces:
Iterable<ISheetTab>

public interface ISheetTabs extends Iterable<ISheetTab>
Represents a collection of all the sheet tabs in the workbook.
  • Method Summary

    Modifier and Type
    Method
    Description
    get(int index)
    Gets the sheet tab using the index.
    get(String name)
    Gets the sheet tab using the name.
    int
    Returns the number of objects in the collection.

    Methods inherited from interface java.lang.Iterable

    forEach, iterator, spliterator
  • Method Details

    • getCount

      int getCount()
      Returns the number of objects in the collection.
    • get

      ISheetTab get(int index)
      Gets the sheet tab using the index.
      Parameters:
      index - The index.
      Returns:
      The sheet tab at the specified index.
    • get

      ISheetTab get(String name)
      Gets the sheet tab using the name.
      Parameters:
      name - TThe name of the sheet tab.
      Returns:
      The sheet tab with the specified name.