Class ExcelPivotTableFilterBaseCollection
The base collection for pivot table filters
Inheritance
Object
ExcelPivotTableFilterBaseCollection
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.Filter
Assembly: EPPlus.dll
Syntax
public abstract class ExcelPivotTableFilterBaseCollection : IEnumerable<ExcelPivotTableFilter>, IEnumerable
Properties
Count
Number of items in the collection
Declaration
public int Count { get; }
Property Value
| Type | Description |
|---|---|
| Int32 |
Item[Int32]
The indexer for the collection
Declaration
public ExcelPivotTableFilter this[int index] { get; }
Parameters
| Type | Name | Description |
|---|---|---|
| Int32 | index | The index |
Property Value
| Type | Description |
|---|---|
| ExcelPivotTableFilter |
Methods
GetEnumerator()
Returns an enumerator that iterates through the collection.
Declaration
public IEnumerator<ExcelPivotTableFilter> GetEnumerator()
Returns
| Type | Description |
|---|---|
| IEnumerator<ExcelPivotTableFilter> | An enumerator that can be used to iterate through the collection. |
Explicit Interface Implementations
IEnumerable.GetEnumerator()
Returns an enumerator that iterates through the collection.
Declaration
IEnumerator IEnumerable.GetEnumerator()
Returns
| Type | Description |
|---|---|
| IEnumerator | An enumerator that can be used to iterate through the collection. |
Implements
System.Collections.Generic.IEnumerable<T>
System.Collections.IEnumerable