public interface IPivotTables extends java.lang.Iterable<IPivotTable>
| Modifier and Type | Method and Description |
|---|---|
IPivotTable |
add(IPivotCache PivotCache,
IRange TableDestination)
Adds a new PivotTable report.
|
IPivotTable |
add(IPivotCache PivotCache,
IRange TableDestination,
java.lang.String TableName)
Adds a new PivotTable report.
|
IPivotTable |
get(int index)
Returns a single object from a collection.
|
IPivotTable |
get(java.lang.String name)
Returns a single object from a collection.
|
int |
getCount()
Returns the number of objects in the collection.
|
int getCount()
IPivotTable add(IPivotCache PivotCache, IRange TableDestination)
PivotCache - The PivotTable cache on which the new PivotTable report is based.
The cache provides data for the report.TableDestination - The cell in the upper-left corner of the PivotTable report's
destination range (the range on the worksheet where the resulting
report will be placed). You must specify a destination range on
the worksheet that contains the PivotTables object specified by
expression.IPivotTable add(IPivotCache PivotCache, IRange TableDestination, java.lang.String TableName)
PivotCache - The PivotTable cache on which the new PivotTable report is based.
The cache provides data for the report.TableDestination - The cell in the upper-left corner of the PivotTable report's
destination range (the range on the worksheet where the resulting
report will be placed). You must specify a destination range on
the worksheet that contains the PivotTables object specified by
expression.TableName - The name of the new PivotTable report.IPivotTable get(int index)
index - The index number for the object.IPivotTable get(java.lang.String name)
name - The name for the object.