[]
        
(Showing Draft Content)

ISlicerCaches

Interface ISlicerCaches

All Superinterfaces:
Iterable<ISlicerCache>

public interface ISlicerCaches extends Iterable<ISlicerCache>
Represents the collection of slicer caches associated with the specified workbook.
  • Method Details

    • getCount

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

      ISlicerCache get(int index)
      Gets the ISlicerCache with the specified index.
      Parameters:
      index - the index.
    • get

      ISlicerCache get(String name)
      Gets the ISlicerCache with the specified name.
      Parameters:
      name - the name.
    • add

      ISlicerCache add(Object source, String sourceField)
      Adds a new ISlicerCache object to the collection.
      Parameters:
      source - The data source that the new ISlicerCache will be basedon.
      sourceField - The name of the field in the data source to filter by.
      Returns:
      ISlicerCache.
    • add

      ISlicerCache add(Object source, String sourceField, String name)
      Adds a new ISlicerCache object to the collection.
      Parameters:
      source - The data source that the new ISlicerCache will be basedon.
      sourceField - The name of the field in the data source to filter by.
      name - The name uses to reference the slicer cache (the name property of theISlicerCache).
      Returns:
      ISlicerCache.