Newer
Older
ClosedXML / ClosedXML / Excel / PivotTables / IXLPivotTables.cs
@Francois Botha Francois Botha on 7 May 2018 458 bytes Remove IXLPivotTables.Add() - wasn't used
using System;
using System.Collections.Generic;

namespace ClosedXML.Excel
{
    public interface IXLPivotTables : IEnumerable<IXLPivotTable>
    {
        IXLPivotTable AddNew(String name, IXLCell target, IXLRange source);

        IXLPivotTable AddNew(String name, IXLCell target, IXLTable table);

        Boolean Contains(String name);

        void Delete(String name);

        void DeleteAll();

        IXLPivotTable PivotTable(String name);
    }
}