Show / Hide Table of Contents

Class ExcelFilterCollectionBase<T>

A collection of filters for a filter column

Inheritance
System.Object
ExcelFilterCollectionBase<T>
ExcelFilterCollection<T>
ExcelValueFilterCollection
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.Filter
Assembly: EPPlus.dll
Syntax
public class ExcelFilterCollectionBase<T> : IEnumerable<T>, IEnumerable
Type Parameters
Name Description
T

The filter type

Fields

_list

A list of columns

Declaration
protected List<T> _list
Field Value
Type Description
System.Collections.Generic.List<T>

_maxTwoItems

Declaration
protected readonly bool _maxTwoItems
Field Value
Type Description
System.Boolean

Properties

Count

Number of items in the collection

Declaration
public int Count { get; }
Property Value
Type Description
System.Int32

Item[Int32]

Declaration
public T this[int index] { get; }
Parameters
Type Name Description
System.Int32 index
Property Value
Type Description
T

Methods

GetEnumerator()

Gets the enumerator for 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
Back to top Generated by DocFX