Class ExcelPivotTableFieldCollectionBase<T>
Base collection class for pivottable fields
Inheritance
Object
ExcelPivotTableFieldCollectionBase<T>
Implements
IEnumerable<T>
IEnumerable
Inherited Members
Object.Equals(Object)
Object.Equals(Object, Object)
Object.GetHashCode()
Object.GetType()
Object.MemberwiseClone()
Object.ReferenceEquals(Object, Object)
Object.ToString()
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 |
|---|---|
| Int32 |
Item[Int32]
Indexer for the collection
Declaration
public virtual T this[int Index] { get; }
Parameters
| Type | Name | Description |
|---|---|---|
| Int32 | 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 |
Explicit Interface Implementations
IEnumerable.GetEnumerator()
Declaration
IEnumerator IEnumerable.GetEnumerator()
Returns
| Type | Description |
|---|---|
| IEnumerator |
Implements
System.Collections.Generic.IEnumerable<T>
System.Collections.IEnumerable