Class ExcelPivotTableFieldCollectionBase<T>
Base collection class for pivottable fields
Inheritance
System.Object
    ExcelPivotTableFieldCollectionBase<T>
      
      
      
      
  Implements
System.Collections.Generic.IEnumerable<T>
    System.Collections.IEnumerable
  Inherited Members
      System.Object.Equals(System.Object)
    
    
      System.Object.Equals(System.Object, System.Object)
    
    
      System.Object.GetHashCode()
    
    
      System.Object.GetType()
    
    
      System.Object.MemberwiseClone()
    
    
      System.Object.ReferenceEquals(System.Object, System.Object)
    
    
      System.Object.ToString()
    
  Namespace: OfficeOpenXml.Table.PivotTable
Assembly: EPPlus.dll
Syntax
public abstract class ExcelPivotTableFieldCollectionBase<T> : IEnumerable<T>, IEnumerableType Parameters
| Name | Description | 
|---|---|
| T | 
Properties
Count
Number of items in the collection
Declaration
public int Count { get; }Property Value
| Type | Description | 
|---|---|
| System.Int32 | 
Item[Int32]
Indexer for the collection
Declaration
public virtual T this[int Index] { get; }Parameters
| Type | Name | Description | 
|---|---|---|
| System.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 | 
|---|---|
| System.Collections.Generic.IEnumerator<T> | The enumerator | 
Explicit Interface Implementations
IEnumerable.GetEnumerator()
Declaration
IEnumerator IEnumerable.GetEnumerator()Returns
| Type | Description | 
|---|---|
| System.Collections.IEnumerator | 
Implements
      System.Collections.Generic.IEnumerable<T>
  
  
      System.Collections.IEnumerable