Interface IXLPivotTables
public interface IXLPivotTables : IEnumerable<IXLPivotTable>, IEnumerable
- Inherited Members
- Extension Methods
Methods
Add(string, IXLCell, IXLPivotCache)
Add a pivot table that will use the pivot cache.
IXLPivotTable Add(string name, IXLCell targetCell, IXLPivotCache pivotCache)
Parameters
namestringName of new pivot table.
targetCellIXLCellA cell where will the pivot table be have it's left top corner.
pivotCacheIXLPivotCachePivot cache to use for the pivot table.
Returns
- IXLPivotTable
Added pivot table.
Exceptions
- ArgumentException
There already is a pivot table with the same name.
Add(string, IXLCell, IXLRange)
IXLPivotTable Add(string name, IXLCell targetCell, IXLRange range)
Parameters
Returns
Add(string, IXLCell, IXLTable)
IXLPivotTable Add(string name, IXLCell targetCell, IXLTable table)
Parameters
Returns
Contains(string)
bool Contains(string name)
Parameters
namestring
Returns
Delete(string)
void Delete(string name)
Parameters
namestring
DeleteAll()
void DeleteAll()
PivotTable(string)
Get pivot table with the specified name (case insensitive).
IXLPivotTable PivotTable(string name)
Parameters
namestringName of a pivot table to return.
Returns
Exceptions
- KeyNotFoundException
No such pivot table found.