Newer
Older
ClosedXML / ClosedXML / Excel / PivotTables / PivotValues / IXLPivotValues.cs
@Francois Botha Francois Botha on 30 May 2017 366 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 IXLPivotValues: IEnumerable<IXLPivotValue>
    {
        IXLPivotValue Add(String sourceName);
        IXLPivotValue Add(String sourceName, String customName);
        void Clear();
        void Remove(String sourceName);
    }
}