Newer
Older
ClosedXML / ClosedXML / Excel / PivotTables / IXLPivotTables.cs
@Francois Botha Francois Botha on 30 May 2017 433 bytes Unknown changes - something to do with line endings?
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;

namespace ClosedXML.Excel
{
    public interface IXLPivotTables: IEnumerable<IXLPivotTable>
    {
        IXLPivotTable PivotTable(String name);
        void Add(String name, IXLPivotTable pivotTable);
        IXLPivotTable AddNew(String name, IXLCell target, IXLRange source);
        void Delete(String name);
        void DeleteAll();
    }
}