Newer
Older
ClosedXML / ClosedXML / Excel / PivotTables / IXLPivotFields.cs
@Francois Botha Francois Botha on 6 Sep 2017 467 bytes Fix pivot table saving
using System;
using System.Collections.Generic;

namespace ClosedXML.Excel
{
    public interface IXLPivotFields : IEnumerable<IXLPivotField>
    {
        IXLPivotField Add(String sourceName);

        IXLPivotField Add(String sourceName, String customName);

        void Clear();

        Boolean Contains(String sourceName);

        IXLPivotField Get(String sourceName);

        Int32 IndexOf(IXLPivotField pf);

        void Remove(String sourceName);
    }
}