Package com.grapecity.documents.excel
Interface ISlicerPivotTables
- All Superinterfaces:
Iterable<IPivotTable>
Represents information about the collection of
IPivotTablesassociated with the specified ISlicerCache object.-
Method Summary
Modifier and TypeMethodDescriptionvoidaddPivotTable(IPivotTable pivotTable) Adds a reference to a PivotTable to theISlicerPivotTablescollection.get(int index) Gets theIPivotTablewith the specified index.intgetCount()Gets the number of objects in the collection.voidremovePivotTable(IPivotTable pivotTable) Removes a reference to a PivotTable from theISlicerPivotTablescollection.Methods inherited from interface java.lang.Iterable
forEach, iterator, spliterator
-
Method Details
-
get
Gets theIPivotTablewith the specified index.- Parameters:
index- the index.
-
getCount
int getCount()Gets the number of objects in the collection. -
addPivotTable
Adds a reference to a PivotTable to theISlicerPivotTablescollection.- Parameters:
pivotTable- AIPivotTableobject that represents the PivotTable toadd.
-
removePivotTable
Removes a reference to a PivotTable from theISlicerPivotTablescollection.- Parameters:
pivotTable- AIPivotTableobject that represents the PivotTable toremove.
-