public interface ICalculatedItems extends java.lang.Iterable<IPivotItem>
| Modifier and Type | Method and Description |
|---|---|
IPivotItem |
add(java.lang.String name,
java.lang.String formula)
Creates a new calculated item.
|
IPivotItem |
get(int index)
Get IPivotItem item by index.
|
IPivotItem |
get(java.lang.String itemName)
Get IPivotItem item by name.
|
int |
getCount()
Returns the number of IPivotItem in the collection.
|
void |
remove(java.lang.String itemName)
Remove calculated item
|
int getCount()
IPivotItem get(int index)
index - index of calculated itemIPivotItem get(java.lang.String itemName)
itemName - name of calcluated itemIPivotItem add(java.lang.String name, java.lang.String formula)
name - The name of the calculated item.formula - The formula for the calculated item.void remove(java.lang.String itemName)
itemName - name of calculated item