Class ExcelPivotTableFieldCollectionBase<T>
Base collection class for pivottable fields
Inheritance
ExcelPivotTableFieldCollectionBase<T>
Inherited Members
Namespace: OfficeOpenXml.Table.PivotTable
Assembly: EPPlus.dll
Syntax
public abstract class ExcelPivotTableFieldCollectionBase<T> : IEnumerable<T>, IEnumerable
Type Parameters
| Name | Description |
|---|---|
| T |
Properties
Count
Number of items in the collection
Declaration
public int Count { get; }
Property Value
| Type | Description |
|---|---|
| int |
this[int]
Indexer for the collection
Declaration
public virtual T this[int Index] { get; }
Parameters
| Type | Name | Description |
|---|---|---|
| int | Index | The index |
Property Value
| Type | Description |
|---|---|
| T | The pivot table field |
Methods
GetEnumerator()
Gets the enumerator of the collection
Declaration
public IEnumerator<T> GetEnumerator()
Returns
| Type | Description |
|---|---|
| IEnumerator<T> | The enumerator |